diff --git a/.clangd b/.clangd new file mode 100644 index 0000000..437f255 --- /dev/null +++ b/.clangd @@ -0,0 +1,2 @@ +CompileFlags: + Remove: [-f*, -m*] diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..dafb8ad --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,13 @@ +ARG DOCKER_TAG=latest +FROM espressif/idf:${DOCKER_TAG} + +ENV LC_ALL=C.UTF-8 +ENV LANG=C.UTF-8 + +RUN apt-get update -y && apt-get install udev -y + +RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc + +ENTRYPOINT [ "/opt/esp/entrypoint.sh" ] + +CMD ["/bin/bash", "-c"] \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..b801786 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "name": "ESP-IDF QEMU", + "build": { + "dockerfile": "Dockerfile" + }, + "customizations": { + "vscode": { + "settings": { + "terminal.integrated.defaultProfile.linux": "bash", + "idf.espIdfPath": "/opt/esp/idf", + "idf.toolsPath": "/opt/esp", + "idf.gitPath": "/usr/bin/git" + }, + "extensions": [ + "espressif.esp-idf-extension", + "espressif.esp-idf-web" + ] + } + }, + "runArgs": ["--privileged"] +} \ No newline at end of file diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..b0646d4 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,23 @@ +{ + "configurations": [ + { + "name": "ESP-IDF", + "compilerPath": "${config:idf.toolsPathWin}\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe", + "compileCommands": "${config:idf.buildPath}/compile_commands.json", + "includePath": [ + "${config:idf.espIdfPath}/components/**", + "${config:idf.espIdfPathWin}/components/**", + "${workspaceFolder}/**" + ], + "browse": { + "path": [ + "${config:idf.espIdfPath}/components", + "${config:idf.espIdfPathWin}/components", + "${workspaceFolder}" + ], + "limitSymbolsToIncludedHeaders": true + } + } + ], + "version": 4 +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2511a38 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "gdbtarget", + "request": "attach", + "name": "Eclipse CDT GDB Adapter" + }, + { + "type": "espidf", + "name": "Launch", + "request": "launch" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a0bd3c6 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,20 @@ +{ + "C_Cpp.intelliSenseEngine": "default", + "idf.espIdfPathWin": "d:\\ESP_IDF\\v5.5.1\\esp-idf", + "idf.toolsPathWin": "e:\\QX_Tech\\ESP32_Test", + "idf.pythonInstallPath": "e:\\QX_Tech\\ESP32_Test\\tools\\idf-python\\3.11.2\\python.exe", + "idf.flashType": "UART", + "idf.openOcdConfigs": [ + "board/esp32s3-builtin.cfg" + ], + "idf.portWin": "COM11", + "idf.customExtraVars": { + "IDF_TARGET": "esp32s3" + }, + "clangd.path": "e:\\QX_Tech\\ESP32_Test\\tools\\esp-clang\\esp-19.1.2_20250312\\esp-clang\\bin\\clangd.exe", + "clangd.arguments": [ + "--background-index", + "--query-driver=e:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe", + "--compile-commands-dir=e:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build" + ] +} diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..7cbc502 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +# The following lines of boilerplate have to be in your project's CMakeLists +# in this exact order for cmake to work correctly +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +# "Trim" the build. Include the minimal set of components, main, and anything it depends on. +idf_build_set_property(MINIMAL_BUILD ON) +project(signal_generator) diff --git a/README.md b/README.md index 5f7c88c..43c9523 100644 --- a/README.md +++ b/README.md @@ -1 +1,155 @@ -# Simlator_test +| Supported Targets | ESP32 | ESP32-S2 | +| ----------------- | ----- | -------- | + +# DAC Constant Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +## Overview + +This example shows the basic usage of outputting continuous voltage by the DAC driver. There are two ways to realize continuous output, one is outputting by DMA transmission and another is by timer interrupt. + +### Timer Interrupt + +While using timer interrupt to output the waves, it actually sets the voltage by `oneshot` API in every timer interrupt callback. Which means the conversion frequency is equal to the timer interrupt frequency. Obviously, the conversion frequency is limited by the interrupt, which relies on the CPU scheduling, thus it can't reach a high frequency in this mode. But it can be used as a supplementary way while the conversion frequency is too low to use DMA mode. + +### DMA transmission + +While using DMA to transmit the wave buffers, the digital values are put into a DMA buffer waiting for transmission and conversion, that means the conversion frequency is equal to the frequency that DMA transmitting the data. We can set the DMA frequency directly, and the digital data in the buffer will be sent automatically when the buffer has been loaded into the DMA. So the conversion frequency can reach even several MHz while using DMA mode. But the wave can be distorted if the frequency is too high. + +## How to use the Example + +### Hardware Required + +* A development board with ESP32 or ESP32-S2 SoC + - Note that some ESP32-S2 DevKits have LED on it which is connected to GPIO18 (same pin as DAC channel1), so the output voltage of DAC channel 1 can't go down due the this LED. +* (Optional) An oscilloscope to monitor the output wave + +### Configure the Project + +You can switch the output method by setting the macro `EXAMPLE_DAC_CONTINUOUS_MODE` to `EXAMPLE_DAC_CONTINUOUS_BY_TIMER` or `EXAMPLE_DAC_CONTINUOUS_BY_DMA`. + +There are four waves: sine, triangle, saw tooth and square. These waves are stored in corresponding buffers, and each wave has 400 points as default, which can be modified by `EXAMPLE_ARRAY_LEN`, reduce the point number can increase the wave frequency. + +### Build and Flash + +Note that as we use the ADC to monitor the output data, we need to set false to `CONFIG_ADC_DISABLE_DAC_OUTPUT` in the menuconfig, otherwise the ADC will shutdown the DAC power to guarantee it won't be affect by DAC. + +Build the project and flash it to the board, then run monitor tool to view serial output: + +``` +idf.py -p PORT flash monitor +``` + +(Replace PORT with the name of the serial port to use.) + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. + +## Example Output + +This example can output sine wave, triangle wave, saw tooth wave and square wave periodically, each wave will last for 3 seconds. + +The DAC channels can be read by ADC channels internally. The ADC read period is 500 ms, the following log is the raw ADC value read from the DAC channels. But since the ADC sample-rate is lower than the DAC output-rate, the sampling value can only indicate that the voltage is changing. + +### Timer Triggered Output + +You can see sine wave, triangle wave, saw tooth wave and square wave at 50 Hz on the oscilloscope. + +``` +I (333) dac continuous: -------------------------------------------------- +I (343) dac continuous: DAC continuous output by Timer +I (343) dac continuous: DAC channel 0 io: GPIO_NUM_25 +I (353) dac continuous: DAC channel 1 io: GPIO_NUM_26 +I (353) dac continuous: Waveform: SINE -> TRIANGLE -> SAWTOOTH -> SQUARE +I (363) dac continuous: DAC conversion frequency (Hz): 20000 +I (373) dac continuous: DAC wave frequency (Hz): 50 +I (373) dac continuous: -------------------------------------------------- +DAC channel 0 value: 2291 DAC channel 1 value: 2331 +DAC channel 0 value: 43 DAC channel 1 value: 3 +DAC channel 0 value: 55 DAC channel 1 value: 32 +DAC channel 0 value: 57 DAC channel 1 value: 33 +DAC channel 0 value: 56 DAC channel 1 value: 34 +DAC channel 0 value: 59 DAC channel 1 value: 34 +DAC channel 0 value: 56 DAC channel 1 value: 33 +I (3393) dac continuous(timer): triangle wave start +DAC channel 0 value: 2258 DAC channel 1 value: 2243 +DAC channel 0 value: 2257 DAC channel 1 value: 2242 +DAC channel 0 value: 2259 DAC channel 1 value: 2242 +DAC channel 0 value: 2257 DAC channel 1 value: 2245 +DAC channel 0 value: 2257 DAC channel 1 value: 2243 +DAC channel 0 value: 2258 DAC channel 1 value: 2240 +I (6393) dac continuous(timer): sawtooth wave start +DAC channel 0 value: 2704 DAC channel 1 value: 2735 +DAC channel 0 value: 2704 DAC channel 1 value: 2735 +DAC channel 0 value: 2704 DAC channel 1 value: 2736 +DAC channel 0 value: 2704 DAC channel 1 value: 2717 +DAC channel 0 value: 2704 DAC channel 1 value: 2734 +DAC channel 0 value: 2704 DAC channel 1 value: 2736 +I (9393) dac continuous(timer): square wave start +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +I (12393) dac continuous(timer): sine wave start +DAC channel 0 value: 82 DAC channel 1 value: 62 +DAC channel 0 value: 83 DAC channel 1 value: 62 +DAC channel 0 value: 82 DAC channel 1 value: 62 +DAC channel 0 value: 87 DAC channel 1 value: 62 +DAC channel 0 value: 84 DAC channel 1 value: 63 +DAC channel 0 value: 83 DAC channel 1 value: 64 +... +``` + +### DMA Output + +You can see sine wave, triangle wave, saw tooth wave and square wave at 2 KHz on the oscilloscope. + +``` +I (335) dac continuous: -------------------------------------------------- +I (345) dac continuous: DAC continuous output by DMA +I (345) dac continuous: DAC channel 0 io: GPIO_NUM_25 +I (355) dac continuous: DAC channel 1 io: GPIO_NUM_26 +I (355) dac continuous: Waveform: SINE -> TRIANGLE -> SAWTOOTH -> SQUARE +I (365) dac continuous: DAC conversion frequency (Hz): 800000 +I (375) dac continuous: DAC wave frequency (Hz): 2000 +I (375) dac continuous: -------------------------------------------------- +DAC channel 0 value: 3131 DAC channel 1 value: 1634 +DAC channel 0 value: 1712 DAC channel 1 value: 2531 +DAC channel 0 value: 1716 DAC channel 1 value: 2535 +DAC channel 0 value: 1715 DAC channel 1 value: 2544 +DAC channel 0 value: 1715 DAC channel 1 value: 2533 +DAC channel 0 value: 1712 DAC channel 1 value: 2539 +I (3395) dac continuous(DMA): triangle wave start +DAC channel 0 value: 592 DAC channel 1 value: 1190 +DAC channel 0 value: 4095 DAC channel 1 value: 3518 +DAC channel 0 value: 4095 DAC channel 1 value: 3515 +DAC channel 0 value: 4095 DAC channel 1 value: 3516 +DAC channel 0 value: 4095 DAC channel 1 value: 3514 +DAC channel 0 value: 4095 DAC channel 1 value: 3515 +I (6395) dac continuous(DMA): sawtooth wave start +DAC channel 0 value: 294 DAC channel 1 value: 560 +DAC channel 0 value: 2861 DAC channel 1 value: 3227 +DAC channel 0 value: 2860 DAC channel 1 value: 3216 +DAC channel 0 value: 2861 DAC channel 1 value: 3227 +DAC channel 0 value: 2861 DAC channel 1 value: 3216 +DAC channel 0 value: 2859 DAC channel 1 value: 3183 +I (9395) dac continuous(DMA): square wave start +DAC channel 0 value: 4095 DAC channel 1 value: 4095 +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +DAC channel 0 value: 0 DAC channel 1 value: 0 +I (12395) dac continuous(DMA): sine wave start +DAC channel 0 value: 2864 DAC channel 1 value: 3691 +DAC channel 0 value: 0 DAC channel 1 value: 204 +DAC channel 0 value: 0 DAC channel 1 value: 202 +DAC channel 0 value: 0 DAC channel 1 value: 193 +DAC channel 0 value: 0 DAC channel 1 value: 181 +DAC channel 0 value: 0 DAC channel 1 value: 194 +... +``` diff --git a/build/.ninja_deps b/build/.ninja_deps new file mode 100644 index 0000000..05f0ab3 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..d523db9 --- /dev/null +++ b/build/.ninja_log @@ -0,0 +1,605 @@ +# ninja log v6 +38 91 7816152833767231 project_elf_src_esp32s3.c 227f928f9ea8a5f3 +38 91 7816152833767231 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/project_elf_src_esp32s3.c 227f928f9ea8a5f3 +23 138 7816152834237475 esp-idf/esp_system/ld/memory.ld 172780f1eb757468 +23 138 7816152834237475 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/memory.ld 172780f1eb757468 +28 138 7816152834243187 esp-idf/esp_system/ld/sections.ld.in 4cb28cd9d93c8c59 +28 138 7816152834243187 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/sections.ld.in 4cb28cd9d93c8c59 +138 362 7816152834287541 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b3adf48c2ba3ab04 +149 374 7816152834396801 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj 67571aa8e9131607 +187 383 7816152834802111 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj 72c4ff10e748271d +197 394 7816152834872249 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj 5ee3f2fe7ed7ba70 +204 404 7816152834944095 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj 7a00ba41ddfe8218 +210 414 7816152835034012 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj 657e4203334bd659 +225 424 7816152835165132 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj 3df1056931486ec +261 434 7816152835529428 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj 37d43ab18d41a5f +165 444 7816152834584768 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj d432d74777fe8b3 +160 462 7816152834503224 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 11958d46fc59401e +181 475 7816152834713126 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj 26b0acfeff6d2357 +175 486 7816152834647797 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj a0c50fcb41880855 +251 494 7816152835445654 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj 17e81bee60f23473 +219 502 7816152835091262 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj e33c06aad9a0d125 +241 512 7816152835340280 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj 4698dd1ddfebbf23 +155 525 7816152834449470 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 7b264691335e2fb2 +32 535 7816152833796523 partition_table/partition-table.bin a2417c4b117baceb +32 535 7816152833796523 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/partition_table/partition-table.bin a2417c4b117baceb +234 546 7816152835243304 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj 485dea7a585cfc54 +284 557 7816152835776723 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj 41dd471ae52390a7 +295 568 7816152835850882 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj 3e540bc2146f28e1 +311 578 7816152836014302 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj 8ff6aea0e18cdeb4 +304 588 7816152835948326 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj fe8cd3b0319de5a3 +334 597 7816152836239378 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj 4930389db669e176 +342 607 7816152836327798 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj c48cbc5a7cd1bb65 +276 618 7816152835663646 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj 5b9c2ebb4de3998b +269 626 7816152835596676 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj 1cda8254f1e5adda +327 635 7816152836171272 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj 9d132273ef6e78c5 +319 647 7816152836092023 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj c3a93d16d252432c +352 657 7816152836423598 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj 6729509e6d340693 +144 664 7816152834342170 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b4ea182aa165dfe +383 678 7816152836736924 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj 38f304c8e7838692 +364 695 7816152836541258 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj b03369e209f9677b +375 706 7816152836648715 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj 2d3bc91944aa8385 +404 720 7816152836950053 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 411cdeedd263be5b +486 734 7816152837759627 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 75f14a3347d9e675 +494 750 7816152837844188 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj 4b2ce8ca22ce32dc +395 762 7816152836850736 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj 88f77d9f7ede3b0e +504 772 7816152837944189 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj 6b091fcf1a9cddfd +454 781 7816152837440363 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 6e60e0efef0331f +434 791 7816152837246670 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 11446820d0fb3153 +515 801 7816152838049230 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj af6d72acf92aaed3 +475 814 7816152837651988 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj 7bc1849381290b1a +415 824 7816152837046687 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj 65b0620db3e4e811 +568 834 7816152838582551 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 6c9de3b89cdd4b38 +525 848 7816152838159285 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj 2527c0249814c22b +557 860 7816152838475387 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj 3d27bac79ad19960 +546 873 7816152838360790 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 47827dd698cb25cc +578 885 7816152838682822 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj 2986a30ce50be54c +464 895 7816152837543769 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 89c52edc7ea31846 +535 919 7816152838256542 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj ae892176310bf0b9 +647 928 7816152839370870 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj bb632b4ae137a92e +607 937 7816152838980207 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj f26e2e83fb001028 +589 952 7816152838787126 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj f45ea379d9c1850 +597 965 7816152838879316 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj f68280bb3d00e081 +627 976 7816152839169384 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj 329e472b21227a2f +695 986 7816152839857484 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj 8ffa72b61a43daf4 +665 994 7816152839553114 esp-idf/cxx/libcxx.a 4f0e157df1c3689c +657 1001 7816152839473093 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj 5d94483eea72f174 +635 1016 7816152839260941 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj e6744fd6df055c4e +684 1025 7816152839739617 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 14f63b49e6247006 +424 1035 7816152837151516 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj 9354598a2c7b4499 +740 1045 7816152840303709 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj 549687dbc275478d +618 1061 7816152839088698 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj d7d2a221bc8596 +725 1072 7816152840150455 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj fc4f26da502305a9 +710 1082 7816152840001421 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj 7bf978511941ad26 +792 1095 7816152840821893 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj 60f841102a2624bb +782 1107 7816152840719785 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj ac597b3ab87a322f +864 1121 7816152841543377 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj 984b31e36c391b40 +762 1137 7816152840522912 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj e4e17bd627db0f2e +750 1153 7816152840407253 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj 20037d01f7b7e317 +825 1173 7816152841150804 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj 794f1ab3061d6918 +848 1189 7816152841385917 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj 444a9b8eb07b812e +772 1203 7816152840629729 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 6bbc01f8223c2bb9 +801 1216 7816152840948883 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj 93d3f86f74bad9ca +885 1228 7816152841752413 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj bd8172d5f4e769a8 +955 1242 7816152842453979 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj b578860464960cb +928 1251 7816152842180438 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj 595a4833337909a0 +814 1261 7816152841043482 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 30239ab86f409d28 +919 1272 7816152842091291 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj 80713705d1715cc3 +876 1283 7816152841662686 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj ff60eee5c24bf916 +994 1298 7816152842841788 esp-idf/pthread/libpthread.a 2aa153cff6bfb7db +965 1314 7816152842554977 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj c8829425da91d3f7 +976 1333 7816152842667189 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj c980c851834668cf +942 1343 7816152842330780 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj 40311656ff35c916 +986 1357 7816152842768283 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj 9d373ed8b81be18e +1025 1368 7816152843154716 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj 3fae9ef78a31d6a8 +1073 1382 7816152843630540 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj 6c489e07d9c18499 +1111 1391 7816152844010435 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj bfcaef175a44d0f8 +1001 1402 7816152842961846 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj 7d065a73bb57bcd2 +1050 1416 7816152843405341 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj 2b1d1b046d4ed7a2 +1035 1425 7816152843259773 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj 3da892e5d0220940 +1061 1446 7816152843519372 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj e312d98e838a2a23 +1016 1461 7816152843063249 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj 968d11b411bc1bba +1216 1476 7816152845071562 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj 4d54727b315b9a62 +909 1486 7816152841994791 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj 3b85b65a73256099 +1127 1494 7816152844176654 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj 4df2bd43a0dffa5a +1085 1503 7816152843752026 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj 7bba42e95d508ef1 +1252 1519 7816152845417293 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 7655ec6f1f576476 +1243 1530 7816152845332859 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 66c275486d6752f2 +835 1543 7816152841247630 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj 42325fe8f623942f +1261 1555 7816152845516128 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj 61184727ae44e714 +1173 1562 7816152844636238 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj 52278758e79c23bd +1137 1570 7816152844274921 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj 4e89f0e3c9b72a83 +1272 1580 7816152845626871 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj 501dffa6e5f4a62b +1289 1588 7816152845796386 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj 66182c6ee1a052f9 +1193 1597 7816152844826989 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj ef0eb5303c06eae2 +1229 1605 7816152845193692 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj c8f405b9ba97ebaf +1163 1613 7816152844538697 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj d4f3d8226abad619 +1323 1623 7816152846136721 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj 7a361f13fca00bfc +1345 1632 7816152846358886 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj aa5c51093b6ca0a +1334 1642 7816152846243330 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj f2a0f761d62c65a9 +1203 1650 7816152844934874 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj 36e1fa4dae0dd943 +1369 1658 7816152846589239 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj c974fb08842da8ca +1357 1667 7816152846475009 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj c99d9a1be17c65ce +1392 1677 7816152846825123 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj 93e2db8462bfb6e +1403 1685 7816152846929426 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj c424ea7d7f2f8066 +1382 1693 7816152846718373 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj 28b051945147f73c +1306 1703 7816152845962091 esp-idf/newlib/libnewlib.a 57af9fb67637edc3 +1426 1711 7816152847162139 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj 80095ac53b7699b1 +1417 1719 7816152847069289 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj d7cbb3c0045f3f2b +1454 1729 7816152847441020 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj bfd41e4e98633ff9 +1476 1737 7816152847666036 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj f2f8965b2baa6f11 +1465 1745 7816152847561055 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj 4f2ebc17740f1cca +1522 1753 7816152848121164 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj efc5f43c1422e6f +1495 1761 7816152847849353 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj 538de7b28c6451fc +1486 1773 7816152847767967 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj 485fa4a6a385c516 +1510 1788 7816152848005473 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj 3eba3b38ac857078 +1095 1798 7816152843849848 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj cbf1cf79ef860764 +1533 1809 7816152848235327 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj 616242df4489dc0f +1547 1820 7816152848377953 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj bedb167d7857846b +1555 1829 7816152848445311 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj bc733a1081031265 +1580 1845 7816152848702327 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj 86d8ead808c6f63c +1570 1861 7816152848609924 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj a1375606aa4eb7a9 +1562 1871 7816152848524527 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj ff550ed3705dd1a3 +1643 1881 7816152849332124 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj 729a557711a0b111 +1633 1893 7816152849232003 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj c0824563c9dc2af9 +1589 1904 7816152848794617 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj bef1de6ce5efe89a +1696 1921 7816152849865516 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 3ea0421c77f4477 +1605 1929 7816152848959069 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj c6a311e7f32bb208 +1711 1938 7816152850011384 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj e212323478993c0a +1614 1946 7816152849041650 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 87d2c72a0057f92d +1685 1965 7816152849754520 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj 1d725e3733265fbc +1650 1977 7816152849401658 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj 187b3395c6457d7a +1719 1989 7816152850093282 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj a16a939a495b50d2 +1677 2003 7816152849672579 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 92557e67e7931cf0 +1670 2016 7816152849598049 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj 4b7dbaba964f8482 +1659 2027 7816152849484307 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj dbc4483cd2e78425 +1597 2037 7816152848877197 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 6ecb8d9e8cbb96f2 +1737 2046 7816152850279275 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj d993e6307c168b51 +1745 2060 7816152850355603 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj 23364325c2df27b0 +1753 2070 7816152850435066 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj 2146d68668e1dcf7 +1729 2083 7816152850196192 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj b88344aee27a327 +1762 2096 7816152850528126 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj ebe171a974afc57f +1799 2110 7816152850893326 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 1319c919b5af13bc +1778 2129 7816152850690006 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj 51017e833a5ecb85 +1789 2140 7816152850795547 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj be4fe8ddfef5938 +1703 2150 7816152849928681 esp-idf/freertos/libfreertos.a 7b98bb2ca6490e25 +1809 2173 7816152850992660 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj a4e789136f71cc6d +1820 2183 7816152851106010 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj 69e5ffb88241a0f0 +1862 2194 7816152851521996 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj 1de6c0557dfd7188 +1895 2205 7816152851851355 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj aa2eed41d137ba46 +1837 2214 7816152851271713 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 707b43a91d921b4c +1624 2226 7816152849135411 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 548121cf1c5506b6 +1851 2236 7816152851413531 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b24a9e9eeccb164e +1921 2246 7816152852111029 esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj f19dbf3c0335cfce +1938 2259 7816152852286005 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj 7db356045e875ae3 +1955 2273 7816152852455112 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b1dd6f3894977dc1 +1871 2286 7816152851617569 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b5a9e5969e489da9 +1904 2304 7816152852004303 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj e1d277af1e4ad09b +1980 2312 7816152852703235 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 63fd48a335661efd +1994 2323 7816152852847590 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj 343a076b2ffec757 +1967 2337 7816152852578325 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj 8000d168d7511c14 +1882 2347 7816152851719923 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 878204fb0542d5d4 +1929 2363 7816152852195539 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj 41f95ed45dda5e70 +2006 2372 7816152852968838 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj 8793f1a5b4ab2054 +2049 2388 7816152853392955 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj ea5399abfaeb1ec1 +2027 2405 7816152853181411 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 433f0c83f772b149 +2038 2418 7816152853283485 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 2bcd935ff55e6369 +2018 2430 7816152853084529 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj 9fb7b84ec8da3f6b +2071 2440 7816152853605430 esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj b1ce37ef9d6ec9a2 +2061 2453 7816152853511560 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj b53ca33385585355 +2096 2465 7816152853866564 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj c3c34bbcc14debd5 +2140 2478 7816152854309988 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj 92b5cb2e35cadcee +2173 2495 7816152854640679 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj a97aa639d50affdb +2113 2507 7816152854029908 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj f77db365e63478bd +2083 2527 7816152853739103 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj d60853a9d482085c +2214 2541 7816152855045869 esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj 79b34f7336d69cc2 +2194 2556 7816152854850574 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 3fff7ff00ca3beb8 +2131 2571 7816152854203738 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj 46e0ecd2d15d9f5e +2227 2582 7816152855176516 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj eeb55e6b15df9125 +2246 2598 7816152855365133 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj e9b75fd4345fca73 +2236 2606 7816152855261543 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj af9c48528187eba9 +2183 2618 7816152854733719 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj 1dc98e7f4fc0f8c +2259 2627 7816152855522514 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj ff97204c03420039 +2205 2638 7816152854950043 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj e8d23683f2d46cd3 +2304 2646 7816152855947220 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj 7c50f2bc624275c +2273 2658 7816152855635977 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 294fe2f888bd7f02 +2364 2673 7816152856536863 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj 448c1ba7dc704b8d +2351 2689 7816152856413445 esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj 651d3192356cbf9c +2312 2700 7816152856031832 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj c76f71f54d20582 +2372 2714 7816152856669765 esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj 3471ef585203e38b +2391 2724 7816152856811608 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj 481e9f8ea29cb26d +2337 2749 7816152856274720 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj eb9398dc3ab31ab0 +2328 2760 7816152856177747 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj 6c96db5d85a863c0 +2158 2773 7816152854487546 esp-idf/esp_hw_support/libesp_hw_support.a aa7e70af4f5a2bb8 +2418 2783 7816152857088506 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj 9b543af5b86f759f +2286 2792 7816152855760156 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 9464435ad5773692 +2441 2807 7816152857316847 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj 2b1d148749f54ed2 +2456 2816 7816152857463224 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj 8ab3eeea5ebc28a6 +2466 2826 7816152857558415 esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj 33658415aafe606 +2430 2836 7816152857205179 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj ebc788d00f674117 +2531 2844 7816152858217696 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 3382c0a1a10ae0ed +2406 2853 7816152856967292 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj 3643aa06fd7c0332 +2496 2862 7816152857860879 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj ea8e87d13a4c472b +2479 2872 7816152857758611 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj 98e0b757fc76f1e2 +2511 2882 7816152858009876 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj de99b5ed52f738e +2571 2894 7816152858614356 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 8a05986710b029b9 +2545 2903 7816152858350466 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj fc26c7b56e79eb04 +2598 2914 7816152858884539 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 134e9e302d8e39c0 +2586 2925 7816152858765342 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj ad4182f98279499a +2560 2934 7816152858508725 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 4df9c06e431302b +2606 2945 7816152858964430 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj a8fc9a65686f3a4c +2638 2961 7816152859279833 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj a4e23d956377dd3f +2627 2972 7816152859175436 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj 5f30650eb6b61156 +2619 2983 7816152859093704 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj 8dc1de4c6cc32b13 +2647 2997 7816152859370862 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 1d1666bfe72c458d +2659 3008 7816152859491140 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 104036bea03eacea +2702 3018 7816152859931205 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj cb0f71a90283dc6 +2674 3033 7816152859682858 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 8dfb0766d2bf4b0e +2690 3049 7816152859802061 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 3557a185d2df7263 +2714 3059 7816152860049266 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj 6af95858d0a1c161 +2760 3068 7816152860508765 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj a2f02db0c858042d +2773 3082 7816152860638436 esp-idf/esp_security/libesp_security.a f89e6cf478502087 +2816 3092 7816152861059193 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj dbeda5c2c7a85f87 +2807 3102 7816152860972323 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 101cd938fb4f0176 +2783 3113 7816152860738079 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 57e94d2489b7226a +2739 3124 7816152860299856 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj a3286ec63be746d3 +2826 3133 7816152861163504 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 930b167ae073b855 +2750 3143 7816152860404167 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 6391b770a6da8707 +2934 3152 7816152862246038 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj b35fb08da1de986b +2836 3160 7816152861268800 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj e75fffea51c185a6 +2925 3171 7816152862151880 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj cc3f9d50fea509c4 +2961 3179 7816152862516348 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj fca8be7dcd532cb5 +2914 3189 7816152862038628 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj d3f2e771271e8971 +2894 3198 7816152861849179 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj 1adba63b6fb5330b +2793 3209 7816152860829243 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj f88da1de3b1ac7b3 +2872 3220 7816152861625410 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 31605c11f4d071a +2986 3228 7816152862771814 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj f945a7a8220f4c5e +2903 3242 7816152861938967 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj 658c72ac80e0c025 +3009 3255 7816152862988660 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj fe91f2ad61bfb320 +2883 3263 7816152861733604 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj e5b291633262f35a +2853 3287 7816152861438827 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 2d4509587aa35339 +2844 3296 7816152861342361 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj 17b34be331e735b7 +2951 3309 7816152862412834 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj f93d729ba7df27d4 +2972 3318 7816152862625283 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj 1881b898580fc27a +3023 3329 7816152863132680 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj ddda24d25be023ef +3049 3338 7816152863392446 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj 76a9b25973bcb2ab +2862 3347 7816152861523481 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj 320136c6c6845260 +3038 3360 7816152863284275 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj ac1b2a3ad09465b2 +3000 3368 7816152862900083 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 757ed2f18e64f118 +3073 3376 7816152863631637 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj c3966057a9f8421b +3124 3383 7816152864149881 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 12d30c6d71dde330 +3152 3392 7816152864423458 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 689e4fac39237b4 +3113 3401 7816152864036025 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj 2b388e7a5a84a516 +3059 3411 7816152863494002 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj 76f464381eb422a1 +3143 3430 7816152864334033 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj 3bb22ff167d780b2 +3103 3438 7816152863928033 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj 175d8b955eb0caef +3133 3448 7816152864235336 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj be33fa086681dbb +3082 3455 7816152863722094 esp-idf/soc/libsoc.a 2f53bd59c6cd686c +3094 3464 7816152863842564 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj 97a1e60d86b84233 +3171 3473 7816152864612563 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 724bd873681b43cd +3213 3484 7816152865030269 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj be080ce282be9081 +3190 3495 7816152864799677 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj 4ce64541b989e972 +3179 3503 7816152864698106 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj ee16fba2be39703c +3232 3512 7816152865223418 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 419f27e3817060e3 +3199 3525 7816152864898423 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 6852e84d99f6b8e2 +3160 3535 7816152864507886 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 2ad8d60c8dfeb34a +3246 3545 7816152865363072 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj dff7c0f12ccbb9bf +3220 3557 7816152865103993 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj f7aeaad1c4effdb0 +3360 3565 7816152866509276 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj 3d4c438f059d64ac +3298 3575 7816152865887775 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 81c67fe2202d992a +3275 3583 7816152865662327 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj 779425b150b23747 +3339 3594 7816152866293648 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj 8e88dad73648aff6 +3255 3609 7816152865456349 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 9f2c8c436e758136 +3383 3621 7816152866737436 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj b9e3b5e1abe174de +3287 3631 7816152865770219 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 42c8e00d2c717f5 +3329 3645 7816152866192560 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 22266a6f458fe116 +3376 3666 7816152866667198 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj d036dac34ce325ff +3318 3677 7816152866084600 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 718905949a8000ea +3430 3685 7816152867198894 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj d22c566dea28b3ec +3439 3696 7816152867290796 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj f6913fd826955c1b +3448 3706 7816152867377762 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj d985911e1d6f70a6 +3368 3715 7816152866582313 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj 783c9d1a5c6a1a2c +3455 3730 7816152867455353 esp-idf/heap/libheap.a f3fd23dfbfb8611d +3347 3738 7816152866396943 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj e6d341745028c76a +3422 3748 7816152867117170 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj f96ef32b38f17ff5 +3393 3759 7816152866831804 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj be5c0d251d6c7654 +3402 3768 7816152866919792 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b940d1710cad243c +3484 3778 7816152867746954 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj c178a5c8ca15e9e4 +3464 3789 7816152867540037 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj c3325fcae25634ea +3309 3804 7816152865994967 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 72db8cc6910ff8c8 +3474 3814 7816152867642074 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 204806d4a6cdcd79 +3504 3824 7816152867941987 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b1858fe678b25586 +3535 3835 7816152868255543 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 57735c4608231829 +3495 3846 7816152867853084 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj d37eb19c75bc1958 +3512 3860 7816152868069383 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj a6ecf1acb931a531 +3576 3870 7816152868660301 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj bbed0234a7a3d4b3 +3566 3881 7816152868560723 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj b638d56240f035b4 +3583 3891 7816152868738874 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj 5448dc4d03e4b115 +3599 3902 7816152868890760 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj 57128a1dd305bb5d +3557 3910 7816152868481019 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj 7ac442bb1b928c4f +3636 3921 7816152869255430 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj c15c39fba57ffec4 +3611 3933 7816152869020425 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj 2bce335d9b85a069 +3721 3943 7816152870115782 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj e381530b9624be8 +3739 3955 7816152870294702 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj 57aeb23744708a3b +3659 3964 7816152869493381 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 7a992e4b8bdd6115 +3677 3977 7816152869676138 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj a21f1c746134d9d +3621 3987 7816152869119988 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj cde9bf7ec8542339 +3666 3997 7816152869560906 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj bba7c22de77b9e14 +3546 4015 7816152868358830 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b7bbd80b60df0515 +3525 4028 7816152868152394 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 23e20137700ac848 +3696 4039 7816152869862323 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj 327a64793c2b0afb +3759 4050 7816152870495443 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 181d5cfb52b556ac +3780 4063 7816152870705916 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 68b9cca59abbfa43 +3768 4079 7816152870588892 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 215315e351c40663 +3748 4093 7816152870384222 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 5618a0073879e698 +3730 4102 7816152870205181 esp-idf/log/liblog.a 218edd2d6570b82d +3685 4113 7816152869752470 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj 4dcbf1346b23bfcd +3804 4124 7816152870947684 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 357a0f9fa87504c4 +3792 4138 7816152870831154 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b979a59fb8b800b +3835 4158 7816152871255173 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj b7ea04cf3a2bf1f8 +3825 4170 7816152871153695 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 18deb50b05544821 +3902 4187 7816152871922260 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 9e58422e92bc3a1c +3706 4200 7816152869971199 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj eb259ef50be7383b +3911 4224 7816152872015636 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 98f8f3a1905c08ea +3921 4243 7816152872114981 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj c0e8302cd7a4a528 +3933 4253 7816152872240815 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj b4033c69326b95d0 +3814 4265 7816152871050582 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj ef2b10287f38669b +3955 4294 7816152872454255 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj 33d2106bf6405422 +3860 4308 7816152871501252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj d691e7b236036a0f +3945 4325 7816152872349024 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 1291a95ab233133d +4094 4349 7816152873841762 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 786301fd5a01583f +4113 4359 7816152874035466 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj a21def221d1f13d8 +3965 4370 7816152872557665 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj ff30b5e8ddadd4a0 +3988 4380 7816152872783250 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 9ba8ab8700ec7259 +4039 4393 7816152873292487 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj c8585304e64b7aa1 +3846 4402 7816152871363706 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj ce0a806c9daa3a91 +4006 4416 7816152872968455 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj d4f1470c4ea33149 +3881 4426 7816152871713059 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj f6aa102c2aa9201c +4079 4441 7816152873695985 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 41be560b0d0b425e +4028 4456 7816152873179548 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 2aaade27b46785b9 +4064 4465 7816152873539129 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj e0a239b7abf2b781 +4050 4481 7816152873405142 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj a797330e490298e9 +3891 4503 7816152871818449 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj 577d448f430a97b5 +4228 4523 7816152875189872 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj 165f3adf85886c96 +4125 4545 7816152874153418 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 6935091ca4f0709e +4147 4560 7816152874376456 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj aa2533c5cd43d8f4 +3977 4575 7816152872675231 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj e63dab10f1bf6cde +4243 4586 7816152875338985 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj a11fa7f964a07e8c +4253 4601 7816152875433816 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj 8d26b8de1e23e1b0 +4158 4611 7816152874486285 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 8c2445baee0102d9 +4177 4622 7816152874676931 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj dd830b294786640b +4275 4633 7816152875652346 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj ae0d116baab2d34 +4308 4643 7816152875981720 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj 364cff72eb8eba8e +4327 4655 7816152876175536 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 8d28eb52349527e1 +4018 4671 7816152873084116 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj f615bb7844b0949c +4206 4687 7816152874959794 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj db17303313d3fbf9 +4297 4703 7816152875877423 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj e176f718b76a250c +4403 4718 7816152876929088 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 528cef3a3f8a72a0 +3871 4731 7816152871609426 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b5fc1c7f6aff3d05 +4380 4745 7816152876705583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj d2cefe81b2c30fa8 +4370 4765 7816152876606253 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 2d99f124a53231fc +4416 4780 7816152877068264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 9012f2370b880d38 +4457 4794 7816152877471558 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 20e3205f686ff3d3 +4102 4813 7816152873926194 esp-idf/hal/libhal.a 8fc78c33ab85eede +4359 4826 7816152876493112 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 2ac36cb60c203713 +4188 4844 7816152874789341 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 1571f95a3ed2ef8d +4431 4856 7816152877212340 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj a6cd3202a8d05267 +4393 4868 7816152876829752 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 34776f4c9aa50678 +4507 4882 7816152877973772 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj cd11377b32ad85a3 +4442 4897 7816152877322557 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 69eadcf5ca94bb80 +4349 4907 7816152876399147 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 952c8aa9c9e84801 +4548 4920 7816152878382749 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 329f1893a61d6850 +4586 4934 7816152878768924 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 996e5bb7152d201a +4531 4944 7816152878215671 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 72853cf8e239389c +4657 4957 7816152879472542 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 61f5517679704274 +4492 4982 7816152877822764 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj ed9fe0cb3bb61abe +4560 4997 7816152878497502 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b67c2c34d62c8a94 +4643 5008 7816152879338583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj ddb7e1e6a6692cc2 +4601 5022 7816152878914669 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj 4a866e0d2aa75a14 +4703 5032 7816152879934151 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 1e5b95c1cc1267d5 +4672 5044 7816152879620377 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj 2cb3bb81e82b0be7 +4575 5058 7816152878653681 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 30fc857d56fdb824 +4611 5077 7816152879012490 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b527efda7aaf12f3 +4622 5090 7816152879125682 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj b24d95d785a0b617 +4633 5105 7816152879236252 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 3c66bc5185ebba7f +4746 5117 7816152880367676 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj d8980857c268e48 +4718 5126 7816152880083656 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj afae24148c6fef59 +4466 5137 7816152877566600 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 453a1378a6c190e1 +4781 5147 7816152880719196 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 2785e3505f8ecf75 +4770 5159 7816152880604712 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj 1c7ffc4721a8e646 +4688 5174 7816152879783073 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj bdb7ebfbebfad895 +4731 5184 7816152880216765 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 78233f786bdbeee3 +4884 5196 7816152881748767 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj d59c22516b6e960e +4858 5206 7816152881481431 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 4043d1a3d0429e37 +4868 5216 7816152881583281 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj c7a29651e9634d51 +4795 5225 7816152880852079 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 300399157f14101d +4816 5233 7816152881067309 esp-idf/esp_rom/libesp_rom.a 1d2d2e300f3117fd +4844 5241 7816152881342382 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj a7e73ce5b2a7f63 +4935 5250 7816152882249235 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj eb0f5700e9551d69 +4827 5259 7816152881211452 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 7e9fe59bb81b7a7a +4946 5269 7816152882365827 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj 9759edd5bbc7606f +4908 5280 7816152881981427 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj 239ba90d763997c8 +4924 5288 7816152882149115 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 7b6c3c22eab70af0 +5046 5295 7816152883369133 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 494fcd53d305c2d2 +4984 5303 7816152882747887 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj 21e802a58dab4aaa +5078 5319 7816152883684636 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj d0641904e1d7e1ad +4997 5329 7816152882877020 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj 344fe6bf63d56b86 +5012 5339 7816152883020134 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj e50aa4e4893258c8 +5022 5349 7816152883125013 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj f8b3da8d610b9865 +4970 5358 7816152882601229 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj d75d2fcb07caba26 +5091 5370 7816152883850852 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 3fa88c9417156338 +5117 5382 7816152884073246 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 2fedfb534ff0dbaf +5032 5393 7816152883226906 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 54159167535f44a5 +5063 5400 7816152883575365 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 86c3e6c5c2fa9202 +5105 5409 7816152883960703 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj 35813e12a5f4898 +5137 5424 7816152884271284 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj e1d21e3007b74ec5 +5184 5433 7816152884749275 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj 6fef19fe69afe827 +5196 5443 7816152884863837 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 77a74017e773bb1c +5150 5451 7816152884398760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj acd49e9daee86fa8 +5206 5463 7816152884967142 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 43612cc83023ca52 +5226 5474 7816152885156715 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 86ba2dacdec4076d +5159 5482 7816152884540369 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj 3d28e596faa68df9 +5216 5494 7816152885067037 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj dabca4087326e243 +5174 5505 7816152884646318 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj 9dac593a32fccc26 +5241 5515 7816152885319010 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj 66e3fc51d8e0bf9c +5233 5523 7816152885235965 esp-idf/esp_common/libesp_common.a 1acf502684c045fc +5250 5532 7816152885404492 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj a9e88a79d74d53cb +5288 5534 7816152885782535 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj 80fcc5bde629131f +5280 5535 7816152885706867 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj 3cf26e5bfeb47b61 +5295 5535 7816152885852075 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj 8acf9047b4a5ecd9 +5310 5536 7816152885997864 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj 1227bdb0358a3ac5 +5319 5542 7816152886094844 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b4104fc7b82cf18a +5269 5551 7816152885591924 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj 6abff885eb91e097 +5339 5560 7816152886290104 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj 21c54f90162e733e +5259 5577 7816152885496688 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj 4778b204c346c5b9 +5401 5594 7816152886910723 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj 3db3a3f404cddbea +5329 5595 7816152886195421 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj 23680750c20f76f8 +5126 5596 7816152884166308 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj d26b10415197c41e +5371 5600 7816152886616068 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj 72718bf2b1ceb444 +5358 5624 7816152886483009 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj 4436b5e3b84207e +5416 5649 7816152887070439 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj 1cfc1222d56c4ece +5425 5650 7816152887151142 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj f82b0a5ffafadbb5 +5451 5651 7816152887419768 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj 4cbf15e0bb2e2b4e +5494 5651 7816152887868883 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj be7da25e866ba9fd +5382 5652 7816152886724222 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj 59a85c64d5d877fe +5349 5652 7816152886391961 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj d80514bd5ca522c7 +5505 5658 7816152887956943 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj 6f22033ee57640af +5474 5661 7816152887643261 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj 6bcbfe5492860686 +5482 5661 7816152887725880 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj edd221808cef4a6 +5515 5662 7816152889478229 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 4c0b75c67644bbef +5515 5662 7816152889478229 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 4c0b75c67644bbef +5435 5666 7816152887249793 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj ed91a90752b4e3da +5463 5669 7816152887534685 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj acd942ebd0ac597 +5393 5676 7816152886833525 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj 331114bf0525aa4a +5444 5703 7816152887339287 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj c0d211cd2b070121 +4897 5724 7816152881870858 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 8655756d216d446c +5523 5738 7816152888131994 esp-idf/esp_system/libesp_system.a 1dd6164a1f35127b +5662 5766 7816152890524609 bootloader-prefix/src/bootloader-stamp/bootloader-download 70563b534e1fa049 +5662 5766 7816152890524609 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-download 70563b534e1fa049 +5766 5868 7816152891540740 bootloader-prefix/src/bootloader-stamp/bootloader-update 666f36dce471e83c +5766 5868 7816152891540740 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-update 666f36dce471e83c +5738 5890 7816152890285010 esp-idf/spi_flash/libspi_flash.a f26642509e76831f +5868 5968 7816152892548227 bootloader-prefix/src/bootloader-stamp/bootloader-patch 932a5beeab5a4b13 +5868 5968 7816152892548227 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 932a5beeab5a4b13 +5891 6011 7816152891811166 esp-idf/esp_mm/libesp_mm.a e371029f8b06c011 +6011 6148 7816152893007200 esp-idf/bootloader_support/libbootloader_support.a 7adca021c756fb20 +6148 6279 7816152894383171 esp-idf/efuse/libefuse.a d8a923271eb831b +6279 6403 7816152895693362 esp-idf/esp_partition/libesp_partition.a f82620ebbadec84c +6403 6514 7816152896931165 esp-idf/app_update/libapp_update.a b7e6ae6ef5050b8b +6514 6621 7816152898037258 esp-idf/esp_bootloader_format/libesp_bootloader_format.a a4bcb45ec380c1ba +6622 6728 7816152899114640 esp-idf/esp_app_format/libesp_app_format.a 522222b32fd0c2eb +6728 6869 7816152900189783 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 774f6dbadda96f5d +6869 6993 7816152901591872 esp-idf/mbedtls/mbedtls/library/libmbedx509.a 14a61eb1035255b0 +6993 7266 7816152902839982 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 8130e9d95683e200 +7266 7377 7816152905564464 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a d3dd4373e9818cb6 +7377 7488 7816152906671362 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a 48af05ae3bf7a142 +7488 7603 7816152908828318 esp-idf/mbedtls/x509_crt_bundle 1af678b612885bca +7488 7603 7816152908828318 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/x509_crt_bundle 1af678b612885bca +7603 7737 7816152910239129 x509_crt_bundle.S c965008b61c9865b +7603 7737 7816152910239129 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/x509_crt_bundle.S c965008b61c9865b +7737 7984 7816152910280545 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 896136c90632d117 +7744 7997 7816152910339606 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj aa14cf11d3b77b77 +7750 8012 7816152910398544 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj 169a9b74485bb0aa +7756 8026 7816152910490341 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 84041069ef54a67b +7771 8039 7816152910638654 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 49a3b839c408d8d9 +7781 8050 7816152910742281 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj 998ad6c34a84db4b +7790 8058 7816152910824745 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 6271ab200f25d1eb +7799 8070 7816152910896832 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj e39153e31d771baf +7805 8079 7816152910955401 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 8a3a81318bde3549 +7812 8087 7816152911021752 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj 76373500adb50707 +7825 8098 7816152911150389 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj f002efdb71945b22 +7860 8109 7816152911497296 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj d230f6a2201c401e +7866 8120 7816152911574216 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj a2804875d9cde1e1 +7876 8133 7816152911699213 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj e9514dfff9bbc5db +7889 8143 7816152911793581 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj bfb7296f705c668f +7899 8151 7816152911898904 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj 42ca687f972493c7 +7906 8166 7816152911971985 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj b1f81a658208d749 +7765 8178 7816152910554217 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj edc0d6cc8b1828b3 +7849 8189 7816152911392600 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj 6631ea91add106aa +7841 8203 7816152911319455 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj 63ded41ae54f025e +7833 8220 7816152911230392 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj fc217c9335d391f6 +8004 8236 7816152912950028 esp-idf/mbedtls/libmbedtls.a de3a8216b41e234 +8050 8249 7816152913403240 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj ba613d04dab76c9a +7986 8287 7816152912765839 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 337e863561fdfc72 +7974 8319 7816152912665899 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj f58ffac16bdd34fc +7963 8365 7816152912534627 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj bc3d34199dd4b3f9 +8029 8375 7816152913195029 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 75f27419a7ba0272 +7916 8385 7816152912058809 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 1dd0e593573fa0eb +7944 8394 7816152912343671 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj 56c78508177102a1 +7818 8403 7816152911086729 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj 954a939316286de4 +8014 8411 7816152913046010 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 61bc153f6d7d9213 +7952 8421 7816152912452124 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj fb364a3179118c2f +7925 8431 7816152912155643 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj a2aa471d6b47646 +8070 8443 7816152913604961 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj 110aa152e59b3512 +8039 8457 7816152913293240 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj e21d1c45c32d5d65 +8109 8468 7816152914024280 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj 9026e33df51218f5 +8099 8479 7816152913897001 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj 3dea5a3215558985 +8059 8494 7816152913496909 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj c9030a5f2eeda9c8 +8236 8506 7816152915261456 esp-idf/esp_pm/libesp_pm.a b1874dd960696174 +8120 8542 7816152914143860 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj 44b96e0b7aedcd2e +7935 8551 7816152912256150 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj e8e5f691d2ec3f92 +8365 8575 7816152916554987 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj 597466f37b5dccea +8152 8585 7816152914452360 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj 164cb541574cd84e +8143 8598 7816152914332234 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj ae2bc6e6a2ec0339 +8087 8614 7816152913779530 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj 4e4d55d1f9bec14b +8250 8624 7816152915397960 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj 89d63014fbc66a19 +8168 8639 7816152914580391 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj 96a1339ad1aaf555 +8192 8649 7816152914828422 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj efc9356d19566fb4 +8080 8666 7816152913699318 esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj 1d559543c1a8dc1d +8221 8683 7816152915112278 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj 705f4f7365fd6d26 +8133 8693 7816152914234455 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj b2fa38fc277ceee2 +8287 8710 7816152915775964 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj b595a71809dfd603 +8205 8720 7816152914963279 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj 721e773fe5f2fd1b +8385 8730 7816152916751617 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj 41580b7835dad65b +8403 8746 7816152916928596 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj 8b667f559244d2a7 +8179 8759 7816152914694867 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj 10b49d1d277a9f2c +8422 8777 7816152917118764 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj cd78a74c07f03107 +8375 8787 7816152916649354 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj d7663338d5a1fe4e +8412 8798 7816152917017996 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj 48a4fbdd429a1466 +8432 8808 7816152917223104 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj eb0c08bd768b27cd +8509 8818 7816152918000574 esp-idf/esp_timer/libesp_timer.a fd232526153d0817 +8395 8843 7816152916850950 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj 834b04612230500a +8588 8874 7816152918790436 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj 5ab6610152cfdbd9 +8479 8890 7816152917694021 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj b4f4260c662c0e83 +8468 8901 7816152917589719 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj 5cadd90ee0032853 +8319 8911 7816152916089508 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj ecd2f81714921d05 +8542 8969 7816152918320685 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj 588c233c55c9c4f0 +8639 8981 7816152919292572 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj c7a7a24fde84e600 +8625 8995 7816152919146820 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj e3db7b870fc41082 +8443 9006 7816152917376161 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj cc1a310d158f7214 +8655 9020 7816152919460080 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj 39563588eb01d459 +8562 9037 7816152918532453 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj c1c7e7f8058affef +8458 9076 7816152917485419 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj 3383afde30acac9b +8599 9142 7816152918889773 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj a654b7ac42c9b681 +8787 9154 7816152920775803 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj 744caaaa41f917b1 +8834 9167 7816152921245107 esp-idf/esp_driver_gpio/libesp_driver_gpio.a 3cec0baf74cf3990 +8693 9183 7816152919835656 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 4e2e3d747d25a1f2 +8666 9193 7816152919619011 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj a0ddcefac59ddd25 +8798 9207 7816152920885070 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj bcc9820401270fd7 +8496 9208 7816152917866483 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj eebfd2198c285692 +8911 9208 7816152922015046 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj dbb0572b5b98b417 +8683 9209 7816152919731357 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj 836e5abc442ce9 +8809 9216 7816152920994344 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj b90f42682ed358cb +8710 9249 7816152920004519 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj e649c8e80d781b7e +8981 9253 7816152922715355 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj b539bd44b25dc0bf +8969 9254 7816152922596043 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj a26d60f9ced4a1a5 +8901 9267 7816152921915713 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj 9a2480c1772c2b0c +9076 9286 7816152923664712 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj 19452b91935ae7f2 +8891 9301 7816152921811419 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj f0508d5d5154565 +8875 9317 7816152921652481 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 6746071411053376 +8614 9318 7816152919043737 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj 27312fc1a9e9e535 +9020 9340 7816152923107722 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj 3cadb211b06fe9d2 +8730 9358 7816152920208164 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj ca530f62ec1167ed +8763 9363 7816152920537188 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj 24682dc3d7e1e069 +8575 9364 7816152918656624 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj 8fa37bb6eb038d0e +9143 9379 7816152924330409 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj 587aa08d02c68910 +9006 9380 7816152922963688 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj 4a83e99a356087bb +9168 9381 7816152924578734 esp-idf/xtensa/libxtensa.a 4b381c496445ac91 +8843 9384 7816152921339591 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj 70a8277661f81c31 +9037 9386 7816152923271638 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj f38301963b1945de +8996 9395 7816152922864356 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj 3e35e5842ded9697 +8720 9395 7816152920108818 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 4bd9777efc7d7886 +8746 9451 7816152920361687 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj b7be92b9a1628bdc +8777 9503 7816152920676478 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 8208e3c3d69a7564 +5968 14651 7816152979377227 bootloader-prefix/src/bootloader-stamp/bootloader-configure e8cf4d3f22b29ed0 +5968 14651 7816152979377227 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure e8cf4d3f22b29ed0 diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..2bffe78 --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,610 @@ +# This is the CMakeCache file. +# For build in directory: e:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build +# It was generated by CMake: E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe +# 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 +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//ASM Compiler Base Flags +CMAKE_ASM_FLAGS:STRING='-mlongcalls ' + +//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= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + +//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 + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + +//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 + +//Linker Base Flags +CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles ' + +//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 compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/pkgRedirects + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/signal_generator + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe + +//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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe + +//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=signal_generator + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=3.6.4 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=3 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=6 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=4 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake + +//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 + +//Disable package configuration, target export and installation +DISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON + +//Build Mbed TLS programs. +ENABLE_PROGRAMS:BOOL= + +//Build Mbed TLS tests. +ENABLE_TESTING:BOOL= + +//No help, variable specified on the command line. +ESP_PLATFORM:UNINITIALIZED=1 + +//Generate the auto-generated files as needed +GEN_FILES:BOOL= + +//Git command line client +GIT_EXECUTABLE:FILEPATH=E:/QX_Tech/ESP32_Test/tools/idf-git/2.39.2/cmd/git.exe + +//IDF Build Target +IDF_TARGET:STRING=esp32s3 + +//IDF Build Toolchain Type +IDF_TOOLCHAIN:STRING=gcc + +//Install Mbed TLS headers. +INSTALL_MBEDTLS_HEADERS:BOOL=ON + +//Explicitly link Mbed TLS library to pthread. +LINK_WITH_PTHREAD:BOOL=OFF + +//Explicitly link Mbed TLS library to trusted_storage. +LINK_WITH_TRUSTED_STORAGE:BOOL=OFF + +//Mbed TLS config file (overrides default). +MBEDTLS_CONFIG_FILE:FILEPATH= + +//Compiler warnings treated as errors +MBEDTLS_FATAL_WARNINGS:BOOL=ON + +//Mbed TLS user config file (appended to default). +MBEDTLS_USER_CONFIG_FILE:FILEPATH= + +//Value Computed by CMake +Mbed TLS_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls + +//Value Computed by CMake +Mbed TLS_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +Mbed TLS_SOURCE_DIR:STATIC=D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +SDKCONFIG:UNINITIALIZED=e:\QX_Tech\Simulator\ESP32_TEST\signal_generator\sdkconfig + +//Allow unsafe builds. These builds ARE NOT SECURE. +UNSAFE_BUILD:BOOL=OFF + +//Build Mbed TLS shared library. +USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF + +//Build Mbed TLS static library. +USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=D:/ESP_IDF/v5.5.1/esp-idf + +//Dependencies for the target +everest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa; + +//Dependencies for the target +mbedcrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;everest;general;p256m;general;idf::esp_security;general;idf::esp_mm; + +//Dependencies for the target +mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedx509; + +//Dependencies for the target +mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedcrypto; + +//Dependencies for the target +p256m_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa; + +//Value Computed by CMake +signal_generator_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build + +//Value Computed by CMake +signal_generator_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +signal_generator_SOURCE_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator + + +######################## +# INTERNAL cache entries +######################## + +//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_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=e:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake-gui.exe +//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_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//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=69 +//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=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30 +//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 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS +C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[E:/QX_Tech/ESP32_Test/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()] +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe][cfound components: Interpreter ][v3.11.2()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/signal_generator +//Compiler reason failure +_Python3_Compiler_REASON_FAILURE:INTERNAL= +//Development reason failure +_Python3_Development_REASON_FAILURE:INTERNAL= +_Python3_EXECUTABLE:INTERNAL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;64;;;abi3;e:\QX_Tech\ESP32_Test\tools\idf-python\3.11.2\Lib;e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Lib;e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Lib\site-packages;e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Lib\site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=4ee45e54cff682c447832937a221b157 +//NumPy reason failure +_Python3_NumPy_REASON_FAILURE:INTERNAL= + diff --git a/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake new file mode 100644 index 0000000..73e6fab --- /dev/null +++ b/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake @@ -0,0 +1,29 @@ +set(CMAKE_ASM_COMPILER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe") +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_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + +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 ) + + diff --git a/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..153f44c --- /dev/null +++ b/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake @@ -0,0 +1,82 @@ +set(CMAKE_C_COMPILER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "14.2.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 "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_C_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "NOTFOUND") +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 TRUE) + +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 FALSE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..edb26aa --- /dev/null +++ b/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake @@ -0,0 +1,106 @@ +set(CMAKE_CXX_COMPILER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "14.2.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 "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_CXX_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") +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 TRUE) + +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 FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + + diff --git a/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..5f1d02a Binary files /dev/null and b/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..6b758d5 Binary files /dev/null and b/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.30.2/CMakeSystem.cmake b/build/CMakeFiles/3.30.2/CMakeSystem.cmake new file mode 100644 index 0000000..b17af7a --- /dev/null +++ b/build/CMakeFiles/3.30.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake") + +set(CMAKE_SYSTEM "Generic") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "") +set(CMAKE_SYSTEM_PROCESSOR "") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..8d8bb03 --- /dev/null +++ b/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#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__) + + +#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(__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(__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__) +# 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 + +#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__) +# 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(__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 +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/3.30.2/CompilerIdC/a.out b/build/CMakeFiles/3.30.2/CompilerIdC/a.out new file mode 100644 index 0000000..e84d15b Binary files /dev/null and b/build/CMakeFiles/3.30.2/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..da6c824 --- /dev/null +++ b/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,919 @@ +/* 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__) + + +#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(__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 + + +/* 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__) +# 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 + +#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(__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 +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out b/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out new file mode 100644 index 0000000..a139aab Binary files /dev/null and b/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..9c7c1e1 --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,591 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + The target system is: Generic - - + The host system is: Windows - 10.0.26100 - AMD64 + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe + Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy + 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: + E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/3.30.2/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe + Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy + 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: + E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + xtensa-esp-elf-gcc.exe (crosstool-NG esp-14.2.0_20241119) 14.2.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: "try_compile-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-o1h4sy" + binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-o1h4sy" + cmakeVariables: + CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-o1h4sy' + + Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_e1d83 + [1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_e1d83.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc5eWh1g.s + GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include" + ignoring nonexistent directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc5eWh1g.s + COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -o cmTC_e1d83 && cd ." + Using built-in specs. + COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_e1d83' '-dumpdir' 'cmTC_e1d83.' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccQgKLid.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_e1d83 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_e1d83' '-dumpdir' 'cmTC_e1d83.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-o1h4sy'] + ignore line: [] + ignore line: [Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_e1d83] + ignore line: [[1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/'] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_e1d83.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc5eWh1g.s] + ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/'] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc5eWh1g.s] + ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -o cmTC_e1d83 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_e1d83' '-dumpdir' 'cmTC_e1d83.'] + link line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccQgKLid.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_e1d83 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc] + arg [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccQgKLid.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32s3.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_e1d83] ==> ignore + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_e1d83.dir/CMakeCCompilerABI.c.obj] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00400054] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_e1d83' '-dumpdir' 'cmTC_e1d83.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [] + implicit dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-3nzt0k" + binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-3nzt0k" + cmakeVariables: + CMAKE_CXX_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-3nzt0k' + + Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_cda1a + [1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_cda1a.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cccouGQo.s + GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include" + ignoring nonexistent directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0 + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3 + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cccouGQo.s + COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_cda1a && cd ." + Using built-in specs. + COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_cda1a' '-dumpdir' 'cmTC_cda1a.' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccouie5w.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_cda1a -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_cda1a' '-dumpdir' 'cmTC_cda1a.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:8 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-3nzt0k'] + ignore line: [] + ignore line: [Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_cda1a] + ignore line: [[1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/'] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_cda1a.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cccouGQo.s] + ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/'] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cccouGQo.s] + ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_cda1a && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_cda1a' '-dumpdir' 'cmTC_cda1a.'] + link line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccouie5w.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_cda1a -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc] + arg [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccouie5w.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32s3.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_cda1a] ==> ignore + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_cda1a.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00400054] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_cda1a' '-dumpdir' 'cmTC_cda1a.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [] + implicit dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:139 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-0cxdrf" + binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-0cxdrf" + cmakeVariables: + CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-0cxdrf' + + Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_b2a20 + [1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DCMAKE_HAVE_LIBC_PTHREAD -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o CMakeFiles/cmTC_b2a20.dir/src.c.obj -c E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-0cxdrf/src.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles CMakeFiles/cmTC_b2a20.dir/src.c.obj -o cmTC_b2a20 && cd ." + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_b2a20.dir/src.c.obj:(.literal+0x14): warning: pthread_atfork is not implemented and will always fail + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_b2a20.dir/src.c.obj:(.literal+0xc): warning: pthread_cancel is not implemented and will always fail + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_b2a20.dir/src.c.obj:(.literal+0x4): warning: pthread_create is not implemented and will always fail + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_b2a20.dir/src.c.obj:(.literal+0x8): warning: pthread_detach is not implemented and will always fail + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_b2a20.dir/src.c.obj:(.literal+0x18): warning: pthread_exit is not implemented and will always fail + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_b2a20.dir/src.c.obj:(.literal+0x10): warning: pthread_join is not implemented and will always fail\x0d + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054\x0d + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" + - "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:222 (CHECK_C_COMPILER_FLAG)" + checks: + - "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" + directories: + source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-p5059y" + binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-p5059y" + cmakeVariables: + CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" + cached: true + stdout: | + Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-p5059y' + + Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_0ae66 + [1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -o CMakeFiles/cmTC_0ae66.dir/src.c.obj -c E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/CMakeScratch/TryCompile-p5059y/src.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -nostartfiles CMakeFiles/cmTC_0ae66.dir/src.c.obj -o cmTC_0ae66 && cd ." + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054\x0d + + exitCode: 0 +... diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..85dff24 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,510 @@ +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/menuconfig.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/confserver.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/save-defconfig.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/gen_project_binary.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/app.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/erase_flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/merge-bin.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/monitor.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/encrypted-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/_project_elf_src.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/signal_generator.elf.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/size.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/size-files.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/size-components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/dfu.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/dfu-list.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/dfu-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/uf2.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/uf2-app.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/__ldgen_output_sections.ld.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition-table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/__idf_hal.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/__idf_log.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/__idf_heap.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/__idf_soc.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/__idf_driver.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/__idf_main.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/list_install_components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/install.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/install/local.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/CMakeFiles/install/strip.dir diff --git a/build/CMakeFiles/bootloader.dir/Labels.json b/build/CMakeFiles/bootloader.dir/Labels.json new file mode 100644 index 0000000..1d4e75c --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader.rule" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader-complete.rule" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" + }, + { + "file" : "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule" + } + ], + "target" : + { + "labels" : + [ + "bootloader" + ], + "name" : "bootloader" + } +} \ No newline at end of file diff --git a/build/CMakeFiles/bootloader.dir/Labels.txt b/build/CMakeFiles/bootloader.dir/Labels.txt new file mode 100644 index 0000000..3525dca --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + bootloader +# Source files and their labels +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader.rule +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader-complete.rule +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule diff --git a/build/CMakeFiles/clean_additional.cmake b/build/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..f8ed97c --- /dev/null +++ b/build/CMakeFiles/clean_additional.cmake @@ -0,0 +1,24 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") + file(REMOVE_RECURSE + "bootloader\\bootloader.bin" + "bootloader\\bootloader.elf" + "bootloader\\bootloader.map" + "config\\sdkconfig.cmake" + "config\\sdkconfig.h" + "esp-idf\\esptool_py\\flasher_args.json.in" + "esp-idf\\mbedtls\\x509_crt_bundle" + "flash_app_args" + "flash_bootloader_args" + "flash_project_args" + "flasher_args.json" + "ldgen_libraries" + "ldgen_libraries.in" + "project_elf_src_esp32s3.c" + "signal_generator.bin" + "signal_generator.map" + "x509_crt_bundle.S" + ) +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/git-data/HEAD b/build/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..3dc2aed --- /dev/null +++ b/build/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/build/CMakeFiles/git-data/grabRef.cmake b/build/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..e78d82e --- /dev/null +++ b/build/CMakeFiles/git-data/grabRef.cmake @@ -0,0 +1,50 @@ +# +# Internal file for GetGitRevisionDescription.cmake +# +# Requires CMake 2.6 or newer (uses the 'function' command) +# +# Original Author: +# 2009-2010 Ryan Pavlik +# http://academic.cleardefinition.com +# Iowa State University HCI Graduate Program/VRAC +# +# Copyright Iowa State University 2009-2010. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +set(HEAD_HASH) + +file(READ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "D:/ESP_IDF/v5.5.1/esp-idf/.git") +# handle git-worktree +if(EXISTS "${GIT_DIR}/commondir") + file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) + string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) + if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") + get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) + endif() + if(EXISTS "${GIT_DIR_NEW}") + set(GIT_DIR "${GIT_DIR_NEW}") + endif() +endif() +if(HEAD_CONTENTS MATCHES "ref") + # named branch + string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") + if(EXISTS "${GIT_DIR}/${HEAD_REF}") + configure_file("${GIT_DIR}/${HEAD_REF}" "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/build/CMakeFiles/git-data/head-ref b/build/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..3dc2aed --- /dev/null +++ b/build/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/build/CMakeFiles/rules.ninja b/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..77df5a6 --- /dev/null +++ b/build/CMakeFiles/rules.ninja @@ -0,0 +1,1095 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# 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: signal_generator +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__signal_generator.2eelf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__signal_generator.2eelf_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-g++.exe $FLAGS $LINK_FLAGS @$RSP_FILE -o $TARGET_FILE && $POST_BUILD" + description = Linking CXX executable $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_xtensa_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_xtensa_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_xtensa_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_gpio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_gpio_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_timer_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_timer_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_pm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_pm_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_mbedtls_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__everest_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__everest_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__p256m_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__p256m_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedcrypto_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedx509_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedx509_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedtls_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_app_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_app_format_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_bootloader_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_bootloader_format_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_app_update_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_app_update_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_partition_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_partition_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_efuse_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_efuse_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_bootloader_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_bootloader_support_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_mm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_mm_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spi_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_spi_flash_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_esp_system_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_system_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_system_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_common_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_common_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_esp_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_rom_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_hal_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_hal_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_log_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_log_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_heap_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_heap_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_soc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_soc_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_security_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_security_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hw_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_hw_support_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_freertos_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_freertos_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_freertos_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_newlib_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_newlib_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_pthread_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_pthread_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_cxx_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_cxx_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_gptimer_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_gptimer_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_ringbuf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_ringbuf_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_pcnt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_pcnt_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_spi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_spi_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_mcpwm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_mcpwm_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_i2s_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_i2s_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_sdmmc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_sdmmc_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdmmc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_sdmmc_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdspi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_sdspi_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_rmt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_rmt_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_tsens_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_tsens_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_sdm_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_i2c_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_i2c_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_uart_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_uart_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_ledc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_ledc_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_usb_serial_jtag_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_twai_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_driver_twai_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_driver_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_driver_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_adc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_adc_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_main_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = E:\QX_Tech\ESP32_Test\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = E:\QX_Tech\ESP32_Test\tools\ninja\1.12.1\ninja.exe -t targets + description = All primary targets available: + diff --git a/build/app-flash_args b/build/app-flash_args new file mode 100644 index 0000000..acff1e9 --- /dev/null +++ b/build/app-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 signal_generator.bin diff --git a/build/bootloader-flash_args b/build/bootloader-flash_args new file mode 100644 index 0000000..7b1a5bd --- /dev/null +++ b/build/bootloader-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure b/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b/build/bootloader-prefix/src/bootloader-stamp/bootloader-download new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch b/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt b/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt b/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt new file mode 100644 index 0000000..f98a995 --- /dev/null +++ b/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt @@ -0,0 +1,9 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=source_dir +command= +source_dir=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject +work_dir= + diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-update b/build/bootloader-prefix/src/bootloader-stamp/bootloader-update new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt b/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt new file mode 100644 index 0000000..31617d1 --- /dev/null +++ b/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)= +command (disconnected)= +work_dir= diff --git a/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt new file mode 100644 index 0000000..0b5bdc2 --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt @@ -0,0 +1 @@ +cmd='E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe;-DSDKCONFIG=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig;-DIDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf;-DIDF_TARGET=esp32s3;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;;-B;' diff --git a/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake b/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake new file mode 100644 index 0000000..9ae155a --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake @@ -0,0 +1,27 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an +# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it +# would cause a fatal error, even though it would be a no-op. +if(NOT EXISTS "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject") + file(MAKE_DIRECTORY "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject") +endif() +file(MAKE_DIRECTORY + "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader" + "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix" + "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/tmp" + "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp" + "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src" + "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/build/bootloader/CMakeCache.txt b/build/bootloader/CMakeCache.txt new file mode 100644 index 0000000..6412bbd --- /dev/null +++ b/build/bootloader/CMakeCache.txt @@ -0,0 +1,444 @@ +# This is the CMakeCache file. +# For build in directory: e:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader +# It was generated by CMake: E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe +# 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 +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//ASM Compiler Base Flags +CMAKE_ASM_FLAGS:STRING='-mlongcalls ' + +//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= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + +//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 + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + +//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 + +//Linker Base Flags +CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles ' + +//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 compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/bootloader + +//Path to a program. +CMAKE_LINKER:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe + +//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=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe + +//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=bootloader + +//Path to a program. +CMAKE_RANLIB:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//No help, variable specified on the command line. +EXTRA_COMPONENT_DIRS:UNINITIALIZED=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader + +//Git command line client +GIT_EXECUTABLE:FILEPATH=E:/QX_Tech/ESP32_Test/tools/idf-git/2.39.2/cmd/git.exe + +//No help, variable specified on the command line. +IDF_PATH:UNINITIALIZED=D:/ESP_IDF/v5.5.1/esp-idf + +//IDF Build Target +IDF_TARGET:STRING=esp32s3 + +//IDF Build Toolchain Type +IDF_TOOLCHAIN:STRING=gcc + +//No help, variable specified on the command line. +IGNORE_EXTRA_COMPONENT:UNINITIALIZED= + +//No help, variable specified on the command line. +PROJECT_SOURCE_DIR:UNINITIALIZED=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +SDKCONFIG:UNINITIALIZED=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig + +//Value Computed by CMake +bootloader_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader + +//Value Computed by CMake +bootloader_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +bootloader_SOURCE_DIR:STATIC=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=D:/ESP_IDF/v5.5.1/esp-idf + + +######################## +# INTERNAL cache entries +######################## + +//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_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=e:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake-gui.exe +//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_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//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=26 +//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=E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30 +//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 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[E:/QX_Tech/ESP32_Test/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 + diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake new file mode 100644 index 0000000..73e6fab --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake @@ -0,0 +1,29 @@ +set(CMAKE_ASM_COMPILER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe") +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_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + +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 ) + + diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..153f44c --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake @@ -0,0 +1,82 @@ +set(CMAKE_C_COMPILER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "14.2.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 "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_C_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "NOTFOUND") +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 TRUE) + +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 FALSE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..edb26aa --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake @@ -0,0 +1,106 @@ +set(CMAKE_CXX_COMPILER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "14.2.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 "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_CXX_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ar.exe") +set(CMAKE_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") +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 TRUE) + +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 FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + + diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..5f1d02a Binary files /dev/null and b/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..6b758d5 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake b/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake new file mode 100644 index 0000000..b17af7a --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake") + +set(CMAKE_SYSTEM "Generic") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "") +set(CMAKE_SYSTEM_PROCESSOR "") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c b/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..8d8bb03 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#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__) + + +#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(__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(__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__) +# 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 + +#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__) +# 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(__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 +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out b/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out new file mode 100644 index 0000000..e84d15b Binary files /dev/null and b/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out differ diff --git a/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..da6c824 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,919 @@ +/* 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__) + + +#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(__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 + + +/* 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__) +# 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 + +#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(__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 +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out b/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out new file mode 100644 index 0000000..a139aab Binary files /dev/null and b/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out differ diff --git a/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml b/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..05db8a7 --- /dev/null +++ b/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,526 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + The target system is: Generic - - + The host system is: Windows - 10.0.26100 - AMD64 + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe + Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy + 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: + E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-g++.exe + Build flags: -mlongcalls;-fno-builtin-memcpy;-fno-builtin-memset;-fno-builtin-bzero;-fno-builtin-stpcpy;-fno-builtin-strncpy + 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: + E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + xtensa-esp-elf-gcc.exe (crosstool-NG esp-14.2.0_20241119) 14.2.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: "try_compile-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-fkewg9" + binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-fkewg9" + cmakeVariables: + CMAKE_C_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-fkewg9' + + Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_789bb + [1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_789bb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccelwAmf.s + GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include" + ignoring nonexistent directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccelwAmf.s + COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -o cmTC_789bb && cd ." + Using built-in specs. + COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_789bb' '-dumpdir' 'cmTC_789bb.' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccFStopb.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_789bb -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_789bb' '-dumpdir' 'cmTC_789bb.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-fkewg9'] + ignore line: [] + ignore line: [Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_789bb] + ignore line: [[1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/'] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib esp32s3 -iprefix E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_789bb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccelwAmf.s] + ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 2a7de8ae444ea2cc8934f5dbd0d9a625] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/'] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccelwAmf.s] + ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -o cmTC_789bb && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_789bb' '-dumpdir' 'cmTC_789bb.'] + link line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccFStopb.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_789bb -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc] + arg [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\ccFStopb.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32s3.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_789bb] ==> ignore + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_789bb.dir/CMakeCCompilerABI.c.obj] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00400054] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_789bb' '-dumpdir' 'cmTC_789bb.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [] + implicit dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-2elovc" + binary: "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-2elovc" + cmakeVariables: + CMAKE_CXX_FLAGS: "-mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-nostartfiles " + CMAKE_MODULE_PATH: "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake;D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-2elovc' + + Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_82f29 + [1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_82f29.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc1TF13m.s + GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include" + ignoring nonexistent directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0 + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3 + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc1TF13m.s + COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_82f29 && cd ." + Using built-in specs. + COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) + COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_82f29' '-dumpdir' 'cmTC_82f29.' + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cclU4nzr.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_82f29 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc + E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00400054 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_82f29' '-dumpdir' 'cmTC_82f29.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + add: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + collapse include dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include/c++/14.2.0/backward;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" + - "CMakeLists.txt:72 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-2elovc'] + ignore line: [] + ignore line: [Run Build Command(s): E:/QX_Tech/ESP32_Test/tools/ninja/1.12.1/ninja.exe -v cmTC_82f29] + ignore line: [[1/2] E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -v -o CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -c E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/'] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib esp32s3 -iprefix E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/ -isysroot E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_82f29.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32s3.so -mlongcalls -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -o C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc1TF13m.s] + ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include"] + ignore line: [ignoring nonexistent directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/xtensa-esp-elf/esp32s3] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include/c++/14.2.0/backward] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/include-fixed] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 0f2561fd5b17550bc500962d0f2c6da3] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/'] + ignore line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32s3.so -o CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cc1TF13m.s] + ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-v' '-o' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -nostartfiles -v CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_82f29 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] + ignore line: [COMPILER_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_82f29' '-dumpdir' 'cmTC_82f29.'] + link line: [ E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe -plugin E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cclU4nzr.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc --sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32s3.so -o cmTC_82f29 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0 -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc] + arg [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\CHENYI~1\\AppData\\Local\\Temp\\cclU4nzr.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32s3.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_82f29] ==> ignore + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LE:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [CMakeFiles/cmTC_82f29.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + ignore line: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 00400054] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32s3.so' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-builtin-stpcpy' '-fno-builtin-strncpy' '-nostartfiles' '-v' '-o' 'cmTC_82f29' '-dumpdir' 'cmTC_82f29.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32s3] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/14.2.0/../../../../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit objs: [] + implicit dirs: [E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib/esp32s3;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/14.2.0;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/lib/gcc;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/lib;E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + +... diff --git a/build/bootloader/CMakeFiles/TargetDirectories.txt b/build/bootloader/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..7e8835f --- /dev/null +++ b/build/bootloader/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,92 @@ +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/menuconfig.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/confserver.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/save-defconfig.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/gen_project_binary.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/app.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/erase_flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/merge-bin.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/monitor.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/_project_elf_src.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/bootloader.elf.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/size.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/size-files.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/size-components.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/dfu.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/dfu-list.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/dfu-flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/uf2.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/uf2-app.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir diff --git a/build/bootloader/CMakeFiles/clean_additional.cmake b/build/bootloader/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..ca44e5d --- /dev/null +++ b/build/bootloader/CMakeFiles/clean_additional.cmake @@ -0,0 +1,12 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") + file(REMOVE_RECURSE + "bootloader.bin" + "bootloader.map" + "config\\sdkconfig.cmake" + "config\\sdkconfig.h" + "project_elf_src_esp32s3.c" + ) +endif() diff --git a/build/bootloader/CMakeFiles/cmake.check_cache b/build/bootloader/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/bootloader/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/bootloader/CMakeFiles/git-data/HEAD b/build/bootloader/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..3dc2aed --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/build/bootloader/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..60a7126 --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/grabRef.cmake @@ -0,0 +1,50 @@ +# +# Internal file for GetGitRevisionDescription.cmake +# +# Requires CMake 2.6 or newer (uses the 'function' command) +# +# Original Author: +# 2009-2010 Ryan Pavlik +# http://academic.cleardefinition.com +# Iowa State University HCI Graduate Program/VRAC +# +# Copyright Iowa State University 2009-2010. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +set(HEAD_HASH) + +file(READ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "D:/ESP_IDF/v5.5.1/esp-idf/.git") +# handle git-worktree +if(EXISTS "${GIT_DIR}/commondir") + file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) + string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) + if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") + get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) + endif() + if(EXISTS "${GIT_DIR_NEW}") + set(GIT_DIR "${GIT_DIR_NEW}") + endif() +endif() +if(HEAD_CONTENTS MATCHES "ref") + # named branch + string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") + if(EXISTS "${GIT_DIR}/${HEAD_REF}") + configure_file("${GIT_DIR}/${HEAD_REF}" "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/build/bootloader/CMakeFiles/git-data/head-ref b/build/bootloader/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..3dc2aed --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/build/bootloader/CMakeFiles/rules.ninja b/build/bootloader/CMakeFiles/rules.ninja new file mode 100644 index 0000000..cb716c5 --- /dev/null +++ b/build/bootloader/CMakeFiles/rules.ninja @@ -0,0 +1,348 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# 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: bootloader +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__bootloader.2eelf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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__bootloader.2eelf_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking C executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_xtensa_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_xtensa_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_soc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_soc_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_micro-ecc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_micro-ecc_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_hal_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_hal_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spi_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_spi_flash_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_bootloader_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_bootloader_format_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_bootloader_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_bootloader_support_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_efuse_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_efuse_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_system_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_system_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hw_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_hw_support_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_common_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_common_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_esp_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_esp_rom_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_log_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_log_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe $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____idf_main_ + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && E:\QX_Tech\ESP32_Test\tools\xtensa-esp-elf\esp-14.2.0_20241119\xtensa-esp-elf\bin\xtensa-esp32s3-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = E:\QX_Tech\ESP32_Test\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = E:\QX_Tech\ESP32_Test\tools\ninja\1.12.1\ninja.exe -t targets + description = All primary targets available: + diff --git a/build/bootloader/build.ninja b/build/bootloader/build.ninja new file mode 100644 index 0000000..045119c --- /dev/null +++ b/build/bootloader/build.ninja @@ -0,0 +1,2878 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: bootloader +# 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 = E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/ + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + + +############################################# +# Utility command for save-defconfig + +build save-defconfig: phony CMakeFiles/save-defconfig + + +############################################# +# Utility command for gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bootloader.elf + + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app esp-idf/esptool_py/bootloader_check_size gen_project_binary + + +############################################# +# Utility command for erase_flash + +build erase_flash: phony CMakeFiles/erase_flash + + +############################################# +# Utility command for merge-bin + +build merge-bin: phony CMakeFiles/merge-bin gen_project_binary + + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor bootloader.elf + + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32s3.c + +# ============================================================================= +# Object build statements for EXECUTABLE target bootloader.elf + + +############################################# +# Order-only phony target for bootloader.elf + +build cmake_object_order_depends_target_bootloader.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_xtensa project_elf_src_esp32s3.c + +build CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj: C_COMPILER__bootloader.2eelf_unscanned_ E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/project_elf_src_esp32s3.c || cmake_object_order_depends_target_bootloader.elf + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ + DEP_FILE = CMakeFiles\bootloader.elf.dir\project_elf_src_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always + INCLUDES = -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = CMakeFiles\bootloader.elf.dir + OBJECT_FILE_DIR = CMakeFiles\bootloader.elf.dir + TARGET_COMPILE_PDB = CMakeFiles\bootloader.elf.dir\ + TARGET_PDB = bootloader.elf.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target bootloader.elf + + +############################################# +# Link the executable bootloader.elf + +build bootloader.elf: C_EXECUTABLE_LINKER__bootloader.2eelf_ CMakeFiles/bootloader.elf.dir/project_elf_src_esp32s3.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/ld/esp32s3.peripherals.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.bt_funcs.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.wdt.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32s3/bootloader.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32s3/bootloader.rom.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + LINK_FLAGS = -nostartfiles -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32S3=0 -Wl,--Map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32s3.rom.ld -T esp32s3.rom.api.ld -T esp32s3.rom.bt_funcs.ld -T esp32s3.rom.libgcc.ld -T esp32s3.rom.wdt.ld -T esp32s3.rom.version.ld -T esp32s3.rom.libc.ld -T esp32s3.rom.newlib.ld -T esp32s3.peripherals.ld -T bootloader.ld -T bootloader.rom.ld + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/hal/libhal.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a -u __assert_func -u esp_bootloader_desc -u abort -u __ubsan_include -u esp_system_include_startup_funcs -u esp_sleep_gpio_include -u bootloader_hooks_include + LINK_PATH = -LD:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld -LD:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/ld -LD:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32s3 + OBJECT_DIR = CMakeFiles\bootloader.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\bootloader.elf.dir\ + TARGET_FILE = bootloader.elf + TARGET_PDB = bootloader.elf.pdb + + +############################################# +# Utility command for size + +build size: phony CMakeFiles/size + + +############################################# +# Utility command for size-files + +build size-files: phony CMakeFiles/size-files + + +############################################# +# Utility command for size-components + +build size-components: phony CMakeFiles/size-components + + +############################################# +# Utility command for dfu + +build dfu: phony CMakeFiles/dfu gen_project_binary + + +############################################# +# Utility command for dfu-list + +build dfu-list: phony CMakeFiles/dfu-list + + +############################################# +# Utility command for dfu-flash + +build dfu-flash: phony CMakeFiles/dfu-flash + + +############################################# +# Utility command for uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + 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 = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for CMakeFiles\menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config.env && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --sdkconfig-rename D:/ESP_IDF/v5.5.1/esp-idf/sdkconfig.rename --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config.env --env IDF_TARGET=esp32s3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --dont-write-deprecated --output config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/check_term.py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig IDF_TARGET=esp32s3 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.5.1 IDF_MINIMAL_BUILD=n e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe -m menuconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --sdkconfig-rename D:/ESP_IDF/v5.5.1/esp-idf/sdkconfig.rename --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config.env --env IDF_TARGET=esp32s3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --output config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config.env && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfserver --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config.env --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --sdkconfig-rename D:/ESP_IDF/v5.5.1/esp-idf/sdkconfig.rename --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config.env && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --sdkconfig-rename D:/ESP_IDF/v5.5.1/esp-idf/sdkconfig.rename --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config.env --dont-write-deprecated --output savedefconfig D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/sdkconfig.defaults" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\gen_project_binary + +build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32s3 elf2image --flash_mode dio --flash_freq 80m --flash_size 2MB --min-rev-full 0 --max-rev-full 99 -o E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.bin E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.elf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "Generated E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.bin" && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E md5sum E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.bin > E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/.bin_timestamp" + DESC = Generating binary image from built executable + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\app + +build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esptool_py/bootloader_check_size esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary + + +############################################# +# Custom command for CMakeFiles\erase_flash + +build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\merge-bin + +build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=merge_bin;-o;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/merged-binary.bin;@E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/flash_args -D WORKING_DIRECTORY=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;xtensa-esp32s3-elf-;;--target;esp32s3;;--revision;0;;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.elf -D WORKING_DIRECTORY=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader -P run_serial_tool.cmake" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\_project_elf_src + +build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32s3.c + + +############################################# +# Custom command for project_elf_src_esp32s3.c + +build project_elf_src_esp32s3.c | ${cmake_ninja_workdir}project_elf_src_esp32s3.c: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/project_elf_src_esp32s3.c" + DESC = Generating project_elf_src_esp32s3.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND bootloader.map + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.map -D OUTPUT_JSON= -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-files + +build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND bootloader.map + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.map -D OUTPUT_JSON= -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-components + +build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND bootloader.map + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.map -D OUTPUT_JSON= -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu + +build CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/mkdfu.py write -o E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/dfu.bin --json E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/flasher_args.json --pid 9 --flash-size 2MB" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-list + +build CMakeFiles/dfu-list | ${cmake_ninja_workdir}CMakeFiles/dfu-list: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D ESP_DFU_LIST="1" -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_dfu_util.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-flash + +build CMakeFiles/dfu-flash | ${cmake_ninja_workdir}CMakeFiles/dfu-flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D ESP_DFU_BIN="E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/dfu.bin" -D ESP_DFU_PID="9" -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_dfu_util.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D UF2_CMD=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;D:/ESP_IDF/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32s3 -D UF2_ARGS=--json;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/flasher_args.json;-o;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/uf2.bin -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D UF2_CMD=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;D:/ESP_IDF/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32s3 -D UF2_ARGS=--json;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/flasher_args.json;-o;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/uf2-app.bin;--bin;app -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Order-only phony target for __idf_xtensa + +build cmake_object_order_depends_target___idf_xtensa: phony || cmake_object_order_depends_target___idf_soc + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\eri.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xt_trax.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Link the static library esp-idf\xtensa\libxtensa.a + +build esp-idf/xtensa/libxtensa.a: C_STATIC_LIBRARY_LINKER____idf_xtensa_ esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_FILE = esp-idf\xtensa\libxtensa.a + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\xtensa && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/xtensa/edit_cache: phony esp-idf/xtensa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\xtensa && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/xtensa/rebuild_cache: phony esp-idf/xtensa/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\newlib && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\newlib && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Order-only phony target for __idf_soc + +build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_micro-ecc + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\interrupts.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gpio_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\uart_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\adc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\dedic_gpio_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/gdma_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gdma_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\spi_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\ledc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\pcnt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rmt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdm_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2s_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2c_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\temperature_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\timer_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/lcd_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\lcd_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\mcpwm_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\mpi_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/twai_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\twai_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/wdt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\wdt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/usb_dwc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\usb_dwc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/cam_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\cam_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/power_supply_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\power_supply_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Link the static library esp-idf\soc\libsoc.a + +build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\soc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\soc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Order-only phony target for __idf_micro-ecc + +build cmake_object_order_depends_target___idf_micro-ecc: phony || cmake_object_order_depends_target___idf_hal + +build esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj: C_COMPILER____idf_micro-ecc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c || cmake_object_order_depends_target___idf_micro-ecc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\uECC_verify_antifault.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + OBJECT_FILE_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb + TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Link the static library esp-idf\micro-ecc\libmicro-ecc.a + +build esp-idf/micro-ecc/libmicro-ecc.a: C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb + TARGET_FILE = esp-idf\micro-ecc\libmicro-ecc.a + TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/micro-ecc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\micro-ecc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/micro-ecc/edit_cache: phony esp-idf/micro-ecc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\micro-ecc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/micro-ecc/rebuild_cache: phony esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Order-only phony target for __idf_hal + +build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_spi_flash + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hal_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mpu_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Link the static library esp-idf\hal\libhal.a + +build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_FILE = esp-idf\hal\libhal.a + TARGET_PDB = esp-idf\hal\libhal.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\hal && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\hal && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Order-only phony target for __idf_spi_flash + +build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_bootloader_format + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_wrap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Link the static library esp-idf\spi_flash\libspi_flash.a + +build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\spi_flash && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\spi_flash && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Order-only phony target for __idf_esp_bootloader_format + +build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_bootloader_support + +build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\esp_bootloader_desc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + OBJECT_FILE_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Link the static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a + +build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_bootloader_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_bootloader_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_app_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_app_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Order-only phony target for __idf_bootloader_support + +build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_efuse + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_sha.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_loader.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console_loader.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3\bootloader_soc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/bootloader_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3\bootloader_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_panic.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_panic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Link the static library esp-idf\bootloader_support\libbootloader_support.a + +build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/bootloader_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\bootloader_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\bootloader_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Order-only phony target for __idf_efuse + +build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_esp_system + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_rtc_calib.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes\esp_efuse_api_key.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Link the static library esp-idf\efuse\libefuse.a + +build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj || esp-idf/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +############################################# +# Utility command for efuse-common-table + +build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table + + +############################################# +# Utility command for efuse_common_table + +build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table + + +############################################# +# Utility command for efuse-custom-table + +build esp-idf/efuse/efuse-custom-table: phony + + +############################################# +# Utility command for efuse_custom_table + +build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table + + +############################################# +# Utility command for show-efuse-table + +build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table + + +############################################# +# Utility command for show_efuse_table + +build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table + + +############################################# +# Utility command for efuse_test_table + +build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table + + +############################################# +# Utility command for edit_cache + +build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse-common-table + +build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\efuse && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_common_table + +build esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_custom_table + +build esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show-efuse-table + +build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\efuse && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256 --info" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show_efuse_table + +build esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_test_table + +build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\efuse && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32s3 --max_blk_len 256" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_security && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_security && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Order-only phony target for __idf_esp_system + +build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_hw_support + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Link the static library esp-idf\esp_system\libesp_system.a + +build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Order-only phony target for __idf_esp_hw_support + +build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_esp_common + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_cpu_intr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\cpu_region_protect.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_sleep.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\chip_info.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Link the static library esp-idf\esp_hw_support\libesp_hw_support.a + +build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_hw_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_hw_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_hw_support\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_hw_support\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_hw_support\lowpower && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_hw_support\lowpower && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Order-only phony target for __idf_esp_common + +build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom + +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Link the static library esp-idf\esp_common\libesp_common.a + +build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_common && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_common && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Order-only phony target for __idf_esp_rom + +build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_log + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_uart.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_longjmp.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_cache_esp32s2_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_cache_writeback_esp32s3.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Link the static library esp-idf\esp_rom\libesp_rom.a + +build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_rom && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esp_rom && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Order-only phony target for __idf_log + +build cmake_object_order_depends_target___idf_log: phony || . + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/noos/log_timestamp.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\log_timestamp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/noos/log_lock.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\log_lock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer\log_buffers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/noos/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_format_text.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_format_text.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_print.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_print.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Link the static library esp-idf\log\liblog.a + +build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_FILE = esp-idf\log\liblog.a + TARGET_PDB = esp-idf\log\liblog.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\log && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\log && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for bootloader_check_size + +build esp-idf/esptool_py/bootloader_check_size: phony esp-idf/esptool_py/CMakeFiles/bootloader_check_size gen_project_binary + + +############################################# +# Utility command for edit_cache + +build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\bootloader_check_size + +build esp-idf/esptool_py/CMakeFiles/bootloader_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/bootloader_check_size: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\esptool_py && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\freertos && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\freertos && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Order-only phony target for __idf_main + +build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: C_COMPILER____idf_main_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c || cmake_object_order_depends_target___idf_main + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\bootloader_start.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Link the static library esp-idf\main\libmain.a + +build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_FILE = esp-idf\main\libmain.a + TARGET_PDB = esp-idf\main\libmain.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\main && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader\esp-idf\main && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SD:\ESP_IDF\v5.5.1\esp-idf\components\bootloader\subproject -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Target aliases. + +build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a + +build __idf_efuse: phony esp-idf/efuse/libefuse.a + +build __idf_esp_bootloader_format: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a + +build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a + +build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a + +build __idf_hal: phony esp-idf/hal/libhal.a + +build __idf_log: phony esp-idf/log/liblog.a + +build __idf_main: phony esp-idf/main/libmain.a + +build __idf_micro-ecc: phony esp-idf/micro-ecc/libmicro-ecc.a + +build __idf_soc: phony esp-idf/soc/libsoc.a + +build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a + +build __idf_xtensa: phony esp-idf/xtensa/libxtensa.a + +build bootloader_check_size: phony esp-idf/esptool_py/bootloader_check_size + +build efuse-common-table: phony esp-idf/efuse/efuse-common-table + +build efuse-custom-table: phony esp-idf/efuse/efuse-custom-table + +build efuse_common_table: phony esp-idf/efuse/efuse_common_table + +build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table + +build efuse_test_table: phony esp-idf/efuse/efuse_test_table + +build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a + +build libefuse.a: phony esp-idf/efuse/libefuse.a + +build libesp_bootloader_format.a: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +build libesp_common.a: phony esp-idf/esp_common/libesp_common.a + +build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a + +build libesp_system.a: phony esp-idf/esp_system/libesp_system.a + +build libhal.a: phony esp-idf/hal/libhal.a + +build liblog.a: phony esp-idf/log/liblog.a + +build libmain.a: phony esp-idf/main/libmain.a + +build libmicro-ecc.a: phony esp-idf/micro-ecc/libmicro-ecc.a + +build libsoc.a: phony esp-idf/soc/libsoc.a + +build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a + +build libxtensa.a: phony esp-idf/xtensa/libxtensa.a + +build show-efuse-table: phony esp-idf/efuse/show-efuse-table + +build show_efuse_table: phony esp-idf/efuse/show_efuse_table + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader + +build all: phony app bootloader.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/newlib/all esp-idf/soc/all esp-idf/micro-ecc/all esp-idf/hal/all esp-idf/spi_flash/all esp-idf/esp_bootloader_format/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/efuse/all esp-idf/esp_security/all esp-idf/esp_system/all esp-idf/esp_hw_support/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/log/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/bootloader/all esp-idf/freertos/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format + +build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support + +build esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32s3/all esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all esp-idf/esp_hw_support/lowpower/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/lowpower + +build esp-idf/esp_hw_support/lowpower/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/port/esp32s3 + +build esp-idf/esp_hw_support/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_security + +build esp-idf/esp_security/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system + +build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/freertos + +build esp-idf/freertos/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc + +build esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/newlib + +build esp-idf/newlib/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa + +build esp-idf/xtensa/all: phony esp-idf/xtensa/libxtensa.a + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake D$:/ESP_IDF/v5.5.1/esp-idf/.git/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/cmock/CMock/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/sources.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_coex/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_phy/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_wifi/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/json/cJSON/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/log/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/lwip/lwip/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/openthread/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/openthread/openthread/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/spiffs/spiffs/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/unity/unity/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/build.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/component.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/depgraph.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/dfu.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/idf.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/kconfig.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/ldgen.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/openocd.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project_description.json.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/targets.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/utilities.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/version.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/confgen.py D$:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/config.env.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig config/sdkconfig.cmake config/sdkconfig.h + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake D$:/ESP_IDF/v5.5.1/esp-idf/.git/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/cmock/CMock/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/sources.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_coex/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_phy/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_wifi/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/json/cJSON/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/log/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/lwip/lwip/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/openthread/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/openthread/openthread/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/spiffs/spiffs/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/unity/unity/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/build.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/component.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/depgraph.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/dfu.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/idf.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/kconfig.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/ldgen.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/openocd.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project_description.json.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/targets.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/utilities.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/version.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/confgen.py D$:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/config.env.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig config/sdkconfig.cmake config/sdkconfig.h: 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/bootloader/cmake_install.cmake b/build/bootloader/cmake_install.cmake new file mode 100644 index 0000000..f2658b0 --- /dev/null +++ b/build/bootloader/cmake_install.cmake @@ -0,0 +1,62 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/cmake_install.cmake") +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) + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") + file(WRITE "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/compile_commands.json b/build/bootloader/compile_commands.json new file mode 100644 index 0000000..44c4545 --- /dev/null +++ b/build/bootloader/compile_commands.json @@ -0,0 +1,632 @@ +[ +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -o CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj -c E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build\\bootloader\\project_elf_src_esp32s3.c", + "file": "E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build\\bootloader\\project_elf_src_esp32s3.c", + "output": "CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "output": "esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_soc.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_soc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\bootloader_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\bootloader_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\util.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj" +} +] \ No newline at end of file diff --git a/build/bootloader/config.env b/build/bootloader/config.env new file mode 100644 index 0000000..e4cd17f --- /dev/null +++ b/build/bootloader/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/log/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/soc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/sdkconfig.rename", + "IDF_TARGET": "esp32s3", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "5.5.1", + "IDF_ENV_FPGA": "", + "IDF_PATH": "D:/ESP_IDF/v5.5.1/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/kconfigs_projbuild.in" +} diff --git a/build/bootloader/config/kconfig_menus.json b/build/bootloader/config/kconfig_menus.json new file mode 100644 index 0000000..061c89d --- /dev/null +++ b/build/bootloader/config/kconfig_menus.json @@ -0,0 +1,12048 @@ +[ + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SUPPORTED", + "name": "SOC_ADC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORTED", + "name": "SOC_UART_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_SUPPORTED", + "name": "SOC_PCNT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_SUPPORTED", + "name": "SOC_PHY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORTED", + "name": "SOC_WIFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTED", + "name": "SOC_TWAI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_SUPPORTED", + "name": "SOC_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UHCI_SUPPORTED", + "name": "SOC_UHCI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORTED", + "name": "SOC_AHB_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPTIMER_SUPPORTED", + "name": "SOC_GPTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_SUPPORTED", + "name": "SOC_LCDCAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_SUPPORTED", + "name": "SOC_LCDCAM_CAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_LCD_SUPPORTED", + "name": "SOC_LCDCAM_I80_LCD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_LCD_SUPPORTED", + "name": "SOC_LCDCAM_RGB_LCD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SUPPORTED", + "name": "SOC_MCPWM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDICATED_GPIO_SUPPORTED", + "name": "SOC_DEDICATED_GPIO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_SUPPORT_WRAP", + "name": "SOC_CACHE_SUPPORT_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_SUPPORTED", + "name": "SOC_ULP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_FSM_SUPPORTED", + "name": "SOC_ULP_FSM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RISCV_COPROC_SUPPORTED", + "name": "SOC_RISCV_COPROC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BT_SUPPORTED", + "name": "SOC_BT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_OTG_SUPPORTED", + "name": "SOC_USB_OTG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "name": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CCOMP_TIMER_SUPPORTED", + "name": "SOC_CCOMP_TIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ASYNC_MEMCPY_SUPPORTED", + "name": "SOC_ASYNC_MEMCPY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORTS_SECURE_DL_MODE", + "name": "SOC_SUPPORTS_SECURE_DL_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SUPPORTED", + "name": "SOC_EFUSE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_HOST_SUPPORTED", + "name": "SOC_SDMMC_HOST_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_FAST_MEM_SUPPORTED", + "name": "SOC_RTC_FAST_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_SLOW_MEM_SUPPORTED", + "name": "SOC_RTC_SLOW_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_MEM_SUPPORTED", + "name": "SOC_RTC_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PSRAM_DMA_CAPABLE", + "name": "SOC_PSRAM_DMA_CAPABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XT_WDT_SUPPORTED", + "name": "SOC_XT_WDT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTED", + "name": "SOC_I2S_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORTED", + "name": "SOC_RMT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_SUPPORTED", + "name": "SOC_SDM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPSPI_SUPPORTED", + "name": "SOC_GPSPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORTED", + "name": "SOC_LEDC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORTED", + "name": "SOC_I2C_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_SUPPORTED", + "name": "SOC_SYSTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_COEXISTENCE", + "name": "SOC_SUPPORT_COEXISTENCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMP_SENSOR_SUPPORTED", + "name": "SOC_TEMP_SENSOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORTED", + "name": "SOC_AES_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_SUPPORTED", + "name": "SOC_MPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORTED", + "name": "SOC_SHA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HMAC_SUPPORTED", + "name": "SOC_HMAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DIG_SIGN_SUPPORTED", + "name": "SOC_DIG_SIGN_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENC_SUPPORTED", + "name": "SOC_FLASH_ENC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_SUPPORTED", + "name": "SOC_SECURE_BOOT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_SUPPORTED", + "name": "SOC_MEMPROT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_SUPPORTED", + "name": "SOC_TOUCH_SENSOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BOD_SUPPORTED", + "name": "SOC_BOD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_TREE_SUPPORTED", + "name": "SOC_CLK_TREE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_SUPPORTED", + "name": "SOC_MPU_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WDT_SUPPORTED", + "name": "SOC_WDT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_FLASH_SUPPORTED", + "name": "SOC_SPI_FLASH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RNG_SUPPORTED", + "name": "SOC_RNG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LIGHT_SLEEP_SUPPORTED", + "name": "SOC_LIGHT_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEEP_SLEEP_SUPPORTED", + "name": "SOC_DEEP_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_PERIPH_SHARE_INTERRUPT", + "name": "SOC_LP_PERIPH_SHARE_INTERRUPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORTED", + "name": "SOC_PM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SIMD_INSTRUCTION_SUPPORTED", + "name": "SOC_SIMD_INSTRUCTION_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_40M", + "name": "SOC_XTAL_SUPPORT_40M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APPCPU_HAS_CLOCK_GATING_BUG", + "name": "SOC_APPCPU_HAS_CLOCK_GATING_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_CTRL_SUPPORTED", + "name": "SOC_ADC_RTC_CTRL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIG_CTRL_SUPPORTED", + "name": "SOC_ADC_DIG_CTRL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_ARBITER_SUPPORTED", + "name": "SOC_ADC_ARBITER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MONITOR_SUPPORTED", + "name": "SOC_ADC_MONITOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DMA_SUPPORTED", + "name": "SOC_ADC_DMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PERIPH_NUM", + "name": "SOC_ADC_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MAX_CHANNEL_NUM", + "name": "SOC_ADC_MAX_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_ATTEN_NUM", + "name": "SOC_ADC_ATTEN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_CONTROLLER_NUM", + "name": "SOC_ADC_DIGI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PATT_LEN_MAX", + "name": "SOC_ADC_PATT_LEN_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MIN_BITWIDTH", + "name": "SOC_ADC_DIGI_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MAX_BITWIDTH", + "name": "SOC_ADC_DIGI_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_RESULT_BYTES", + "name": "SOC_ADC_DIGI_RESULT_BYTES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "name": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_IIR_FILTER_NUM", + "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MONITOR_NUM", + "name": "SOC_ADC_DIGI_MONITOR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MIN_BITWIDTH", + "name": "SOC_ADC_RTC_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MAX_BITWIDTH", + "name": "SOC_ADC_RTC_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SHARED_POWER", + "name": "SOC_ADC_SHARED_POWER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APB_BACKUP_DMA", + "name": "SOC_APB_BACKUP_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BROWNOUT_RESET_SUPPORTED", + "name": "SOC_BROWNOUT_RESET_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_WRITEBACK_SUPPORTED", + "name": "SOC_CACHE_WRITEBACK_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_FREEZE_SUPPORTED", + "name": "SOC_CACHE_FREEZE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "name": "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_CORES_NUM", + "name": "SOC_CPU_CORES_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_INTR_NUM", + "name": "SOC_CPU_INTR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_HAS_FPU", + "name": "SOC_CPU_HAS_FPU", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_CPU_HAS_MULTIPLE_CORES", + "name": "SOC_HP_CPU_HAS_MULTIPLE_CORES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_BREAKPOINTS_NUM", + "name": "SOC_CPU_BREAKPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINTS_NUM", + "name": "SOC_CPU_WATCHPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SIMD_PREFERRED_DATA_ALIGNMENT", + "name": "SOC_SIMD_PREFERRED_DATA_ALIGNMENT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_VERSION", + "name": "SOC_AHB_GDMA_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_NUM_GROUPS_MAX", + "name": "SOC_GDMA_NUM_GROUPS_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP", + "name": "SOC_GDMA_PAIRS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORT_PSRAM", + "name": "SOC_AHB_GDMA_SUPPORT_PSRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PORT", + "name": "SOC_GPIO_PORT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PIN_COUNT", + "name": "SOC_GPIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", + "name": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "name": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_VALID_GPIO_MASK", + "name": "SOC_GPIO_VALID_GPIO_MASK", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_IN_RANGE_MAX", + "name": "SOC_GPIO_IN_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_OUT_RANGE_MAX", + "name": "SOC_GPIO_OUT_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "name": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "name": "SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE", + "name": "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_NUM", + "name": "SOC_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_I2C_NUM", + "name": "SOC_HP_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_FIFO_LEN", + "name": "SOC_I2C_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_CMD_REG_NUM", + "name": "SOC_I2C_CMD_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_SLAVE", + "name": "SOC_I2C_SUPPORT_SLAVE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_XTAL", + "name": "SOC_I2C_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_RTC", + "name": "SOC_I2C_SUPPORT_RTC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_10BIT_ADDR", + "name": "SOC_I2C_SUPPORT_10BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_NUM", + "name": "SOC_I2S_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_HW_VERSION_2", + "name": "SOC_I2S_HW_VERSION_2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_XTAL", + "name": "SOC_I2S_SUPPORTS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PLL_F160M", + "name": "SOC_I2S_SUPPORTS_PLL_F160M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM", + "name": "SOC_I2S_SUPPORTS_PCM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM", + "name": "SOC_I2S_SUPPORTS_PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_TX", + "name": "SOC_I2S_SUPPORTS_PDM_TX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM2PDM", + "name": "SOC_I2S_SUPPORTS_PCM2PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_RX", + "name": "SOC_I2S_SUPPORTS_PDM_RX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM2PCM", + "name": "SOC_I2S_SUPPORTS_PDM2PCM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_PDM_MAX_TX_LINES", + "name": "SOC_I2S_PDM_MAX_TX_LINES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_PDM_MAX_RX_LINES", + "name": "SOC_I2S_PDM_MAX_RX_LINES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_TDM", + "name": "SOC_I2S_SUPPORTS_TDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_APB_CLOCK", + "name": "SOC_LEDC_SUPPORT_APB_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_NUM", + "name": "SOC_LEDC_TIMER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_CHANNEL_NUM", + "name": "SOC_LEDC_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_BIT_WIDTH", + "name": "SOC_LEDC_TIMER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_FADE_STOP", + "name": "SOC_LEDC_SUPPORT_FADE_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GROUPS", + "name": "SOC_MCPWM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_OPERATORS_PER_GROUP", + "name": "SOC_MCPWM_OPERATORS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "name": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "name": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "name": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "name": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "name": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "name": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_PERIPH_NUM", + "name": "SOC_MMU_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", + "name": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_MIN_REGION_SIZE", + "name": "SOC_MPU_MIN_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGIONS_MAX_NUM", + "name": "SOC_MPU_REGIONS_MAX_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGION_RO_SUPPORTED", + "name": "SOC_MPU_REGION_RO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGION_WO_SUPPORTED", + "name": "SOC_MPU_REGION_WO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_GROUPS", + "name": "SOC_PCNT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_UNITS_PER_GROUP", + "name": "SOC_PCNT_UNITS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_CHANNELS_PER_UNIT", + "name": "SOC_PCNT_CHANNELS_PER_UNIT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_THRES_POINT_PER_UNIT", + "name": "SOC_PCNT_THRES_POINT_PER_UNIT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_GROUPS", + "name": "SOC_RMT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_CHANNELS_PER_GROUP", + "name": "SOC_RMT_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_PINGPONG", + "name": "SOC_RMT_SUPPORT_RX_PINGPONG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "name": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_XTAL", + "name": "SOC_RMT_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RC_FAST", + "name": "SOC_RMT_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_APB", + "name": "SOC_RMT_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_DMA", + "name": "SOC_RMT_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_SUPPORTED", + "name": "SOC_LCD_I80_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_SUPPORTED", + "name": "SOC_LCD_RGB_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_BUSES", + "name": "SOC_LCD_I80_BUSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_PANELS", + "name": "SOC_LCD_RGB_PANELS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_BUS_WIDTH", + "name": "SOC_LCD_I80_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_DATA_WIDTH", + "name": "SOC_LCD_RGB_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_SUPPORT_RGB_YUV_CONV", + "name": "SOC_LCD_SUPPORT_RGB_YUV_CONV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_NUM_BUSES", + "name": "SOC_LCDCAM_I80_NUM_BUSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_BUS_WIDTH", + "name": "SOC_LCDCAM_I80_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_NUM_PANELS", + "name": "SOC_LCDCAM_RGB_NUM_PANELS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_DATA_WIDTH", + "name": "SOC_LCDCAM_RGB_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "name": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "name": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "name": "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_PIN_COUNT", + "name": "SOC_RTCIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "name": "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_HOLD_SUPPORTED", + "name": "SOC_RTCIO_HOLD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_WAKE_SUPPORTED", + "name": "SOC_RTCIO_WAKE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "name": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_GROUPS", + "name": "SOC_SDM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CHANNELS_PER_GROUP", + "name": "SOC_SDM_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CLK_SUPPORT_APB", + "name": "SOC_SDM_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_NUM", + "name": "SOC_SPI_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_CS_NUM", + "name": "SOC_SPI_MAX_CS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_DDRCLK", + "name": "SOC_SPI_SUPPORT_DDRCLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CD_SIG", + "name": "SOC_SPI_SUPPORT_CD_SIG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_APB", + "name": "SOC_SPI_SUPPORT_CLK_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_XTAL", + "name": "SOC_SPI_SUPPORT_CLK_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", + "name": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_IS_INDEPENDENT", + "name": "SOC_MEMSPI_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_PRE_DIVIDER", + "name": "SOC_SPI_MAX_PRE_DIVIDER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_OCT", + "name": "SOC_SPI_SUPPORT_OCT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_SUPPORTED", + "name": "SOC_SPI_SCT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_REG_NUM", + "name": "SOC_SPI_SCT_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPIRAM_SUPPORTED", + "name": "SOC_SPIRAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPIRAM_XIP_SUPPORTED", + "name": "SOC_SPIRAM_XIP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_COUNTER_NUM", + "name": "SOC_SYSTIMER_COUNTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_NUM", + "name": "SOC_SYSTIMER_ALARM_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_LO", + "name": "SOC_SYSTIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_HI", + "name": "SOC_SYSTIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_FIXED_DIVIDER", + "name": "SOC_SYSTIMER_FIXED_DIVIDER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_INT_LEVEL", + "name": "SOC_SYSTIMER_INT_LEVEL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUPS", + "name": "SOC_TIMER_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_APB", + "name": "SOC_TIMER_GROUP_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_LO", + "name": "SOC_LP_TIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_HI", + "name": "SOC_LP_TIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_VERSION", + "name": "SOC_TOUCH_SENSOR_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_NUM", + "name": "SOC_TOUCH_SENSOR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_MIN_CHAN_ID", + "name": "SOC_TOUCH_MIN_CHAN_ID", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_MAX_CHAN_ID", + "name": "SOC_TOUCH_MAX_CHAN_ID", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_BENCHMARK", + "name": "SOC_TOUCH_SUPPORT_BENCHMARK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "name": "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_WATERPROOF", + "name": "SOC_TOUCH_SUPPORT_WATERPROOF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_PROX_SENSING", + "name": "SOC_TOUCH_SUPPORT_PROX_SENSING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "name": "SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "name": "SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED", + "name": "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SAMPLE_CFG_NUM", + "name": "SOC_TOUCH_SAMPLE_CFG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_CONTROLLER_NUM", + "name": "SOC_TWAI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_MASK_FILTER_NUM", + "name": "SOC_TWAI_MASK_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_CLK_SUPPORT_APB", + "name": "SOC_TWAI_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MIN", + "name": "SOC_TWAI_BRP_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MAX", + "name": "SOC_TWAI_BRP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTS_RX_STATUS", + "name": "SOC_TWAI_SUPPORTS_RX_STATUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_NUM", + "name": "SOC_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_HP_NUM", + "name": "SOC_UART_HP_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_FIFO_LEN", + "name": "SOC_UART_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_BITRATE_MAX", + "name": "SOC_UART_BITRATE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_WAKEUP_INT", + "name": "SOC_UART_SUPPORT_WAKEUP_INT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_APB_CLK", + "name": "SOC_UART_SUPPORT_APB_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_RTC_CLK", + "name": "SOC_UART_SUPPORT_RTC_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_XTAL_CLK", + "name": "SOC_UART_SUPPORT_XTAL_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "name": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UHCI_NUM", + "name": "SOC_UHCI_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_OTG_PERIPH_NUM", + "name": "SOC_USB_OTG_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_DMA", + "name": "SOC_SHA_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_RESUME", + "name": "SOC_SHA_SUPPORT_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_GDMA", + "name": "SOC_SHA_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA1", + "name": "SOC_SHA_SUPPORT_SHA1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA224", + "name": "SOC_SHA_SUPPORT_SHA224", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA256", + "name": "SOC_SHA_SUPPORT_SHA256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA384", + "name": "SOC_SHA_SUPPORT_SHA384", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512", + "name": "SOC_SHA_SUPPORT_SHA512", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_224", + "name": "SOC_SHA_SUPPORT_SHA512_224", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_256", + "name": "SOC_SHA_SUPPORT_SHA512_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_T", + "name": "SOC_SHA_SUPPORT_SHA512_T", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_MEM_BLOCKS_NUM", + "name": "SOC_MPI_MEM_BLOCKS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_OPERATIONS_NUM", + "name": "SOC_MPI_OPERATIONS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RSA_MAX_BIT_LEN", + "name": "SOC_RSA_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_DMA", + "name": "SOC_AES_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_GDMA", + "name": "SOC_AES_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_128", + "name": "SOC_AES_SUPPORT_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_256", + "name": "SOC_AES_SUPPORT_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT0_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT0_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "name": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_BT_WAKEUP", + "name": "SOC_PM_SUPPORT_BT_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "name": "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_CPU_PD", + "name": "SOC_PM_SUPPORT_CPU_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_TAGMEM_PD", + "name": "SOC_PM_SUPPORT_TAGMEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_PERIPH_PD", + "name": "SOC_PM_SUPPORT_RTC_PERIPH_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RC_FAST_PD", + "name": "SOC_PM_SUPPORT_RC_FAST_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_VDDSDIO_PD", + "name": "SOC_PM_SUPPORT_VDDSDIO_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MAC_BB_PD", + "name": "SOC_PM_SUPPORT_MAC_BB_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MODEM_PD", + "name": "SOC_PM_SUPPORT_MODEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "name": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "name": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "name": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "name": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_PD_BY_SW", + "name": "SOC_PM_MODEM_PD_BY_SW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC_FAST_D256_SUPPORTED", + "name": "SOC_CLK_RC_FAST_D256_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "name": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "name": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_XTAL32K_SUPPORTED", + "name": "SOC_CLK_XTAL32K_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", + "name": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_HARD_DIS_JTAG", + "name": "SOC_EFUSE_HARD_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_USB_JTAG", + "name": "SOC_EFUSE_DIS_USB_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SOFT_DIS_JTAG", + "name": "SOC_EFUSE_SOFT_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DIRECT_BOOT", + "name": "SOC_EFUSE_DIS_DIRECT_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_ICACHE", + "name": "SOC_EFUSE_DIS_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V2_RSA", + "name": "SOC_SECURE_BOOT_V2_RSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_256", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "name": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_MEM_ALIGN_SIZE", + "name": "SOC_MEMPROT_MEM_ALIGN_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_DIG_REGS_MEM_SIZE", + "name": "SOC_PHY_DIG_REGS_MEM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MAC_BB_PD_MEM_SIZE", + "name": "SOC_MAC_BB_PD_MEM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "name": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "name": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "name": "SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "name": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_WRAP", + "name": "SOC_SPI_MEM_SUPPORT_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "name": "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "name": "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "name": "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_COEX_HW_PTI", + "name": "SOC_COEX_HW_PTI", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_ADVANCE", + "name": "SOC_EXTERNAL_COEX_ADVANCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_USE_GPIO_MATRIX", + "name": "SOC_SDMMC_USE_GPIO_MATRIX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_NUM_SLOTS", + "name": "SOC_SDMMC_NUM_SLOTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_SUPPORT_XTAL_CLOCK", + "name": "SOC_SDMMC_SUPPORT_XTAL_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_DELAY_PHASE_NUM", + "name": "SOC_SDMMC_DELAY_PHASE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_HW_TSF", + "name": "SOC_WIFI_HW_TSF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_FTM_SUPPORT", + "name": "SOC_WIFI_FTM_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_GCMP_SUPPORT", + "name": "SOC_WIFI_GCMP_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_WAPI_SUPPORT", + "name": "SOC_WIFI_WAPI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_CSI_SUPPORT", + "name": "SOC_WIFI_CSI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_MESH_SUPPORT", + "name": "SOC_WIFI_MESH_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "name": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", + "name": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_SUPPORTED", + "name": "SOC_BLE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_MESH_SUPPORTED", + "name": "SOC_BLE_MESH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_50_SUPPORTED", + "name": "SOC_BLE_50_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLUFI_SUPPORTED", + "name": "SOC_BLUFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_HAS_ADC", + "name": "SOC_ULP_HAS_ADC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_COMBO_MODULE", + "name": "SOC_PHY_COMBO_MODULE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "name": "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_PERIPH_NUM", + "name": "SOC_LCDCAM_CAM_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_DATA_WIDTH_MAX", + "name": "SOC_LCDCAM_CAM_DATA_WIDTH_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CMAKE", + "name": "IDF_CMAKE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "- This option is for internal use only.\n- Enabling this option will help enable all FPGA support so as to\n run ESP-IDF on an FPGA. This can help reproduce some issues that\n only happens on FPGA condition, or when you have to burn some\n efuses multiple times.", + "id": "IDF_ENV_FPGA", + "name": "IDF_ENV_FPGA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "- This option is ONLY used when doing new chip bringup.\n- This option will only enable necessary hw / sw settings for running\n a hello_world application.", + "id": "IDF_ENV_BRINGUP", + "name": "IDF_ENV_BRINGUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CI_BUILD", + "name": "IDF_CI_BUILD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_DOC_BUILD", + "name": "IDF_DOC_BUILD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN", + "name": "IDF_TOOLCHAIN", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN_CLANG", + "name": "IDF_TOOLCHAIN_CLANG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN_GCC", + "name": "IDF_TOOLCHAIN_GCC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_RISCV", + "name": "IDF_TARGET_ARCH_RISCV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_XTENSA", + "name": "IDF_TARGET_ARCH_XTENSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH", + "name": "IDF_TARGET_ARCH", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET", + "name": "IDF_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_INIT_VERSION", + "name": "IDF_INIT_VERSION", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32", + "name": "IDF_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S2", + "name": "IDF_TARGET_ESP32S2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S3", + "name": "IDF_TARGET_ESP32S3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C3", + "name": "IDF_TARGET_ESP32C3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C2", + "name": "IDF_TARGET_ESP32C2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C6", + "name": "IDF_TARGET_ESP32C6", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C5", + "name": "IDF_TARGET_ESP32C5", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32P4", + "name": "IDF_TARGET_ESP32P4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H2", + "name": "IDF_TARGET_ESP32H2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C61", + "name": "IDF_TARGET_ESP32C61", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H21", + "name": "IDF_TARGET_ESP32H21", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H4", + "name": "IDF_TARGET_ESP32H4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_LINUX", + "name": "IDF_TARGET_LINUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_FIRMWARE_CHIP_ID", + "name": "IDF_FIRMWARE_CHIP_ID", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "APP_BUILD_TYPE_APP_2NDBOOT", + "name": "APP_BUILD_TYPE_APP_2NDBOOT", + "range": null, + "title": "Default (binary application + 2nd stage bootloader)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APP_BUILD_TYPE_RAM", + "name": "APP_BUILD_TYPE_RAM", + "range": null, + "title": "Build app runs entirely in RAM (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the way the application is built.\n\nBy default, the application is built as a binary file in a format compatible with\nthe ESP-IDF bootloader. In addition to this application, 2nd stage bootloader is\nalso built. Application and bootloader binaries can be written into flash and\nloaded/executed from there.\n\nAnother option, useful for only very small and limited applications, is to only link\nthe .elf file of the application, such that it can be loaded directly into RAM over\nJTAG or UART. Note that since IRAM and DRAM sizes are very limited, it is not possible\nto build any complex application this way. However for some kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\n\nNote: when APP_BUILD_TYPE_RAM is selected and loaded with JTAG, ESP-IDF does not contain\nall the startup code required to initialize the CPUs and ROM memory (data/bss).\nTherefore it is necessary to execute a bit of ROM code prior to executing the application.\nA gdbinit file may look as follows (for ESP32):\n\n # Connect to a running instance of OpenOCD\n target remote :3333\n # Reset and halt the target\n mon reset halt\n # Run to a specific point in ROM code,\n # where most of initialization is complete.\n thb *0x40007d54\n c\n # Load the application into RAM\n load\n # Run till app_main\n tb app_main\n c\n\nExecute this gdbinit file as follows:\n\n xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\n\nExample gdbinit files for other targets can be found in tools/test_apps/system/gdb_loadable_elf/\n\nWhen loading the BIN with UART, the ROM will jump to ram and run the app after finishing the ROM\nstartup code, so there's no additional startup initialization required. You can use the\n`load_ram` in esptool.py to load the generated .bin file into ram and execute.\n\nExample:\n esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\n CONFIG_ESP_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", + "id": "build-type-application-build-type", + "name": "APP_BUILD_TYPE", + "title": "Application build type", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_GENERATE_BINARIES", + "name": "APP_BUILD_GENERATE_BINARIES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_BOOTLOADER", + "name": "APP_BUILD_BOOTLOADER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "APP_BUILD_TYPE_RAM", + "help": "If this option is enabled, external memory and related peripherals, such as Cache, MMU,\nFlash and PSRAM, won't be initialized. Corresponding drivers won't be introduced either.\nComponents that depend on the spi_flash component will also be unavailable, such as\napp_update, etc. When this option is enabled, about 26KB of RAM space can be saved.", + "id": "APP_BUILD_TYPE_PURE_RAM_APP", + "name": "APP_BUILD_TYPE_PURE_RAM_APP", + "range": null, + "title": "Build app without SPI_FLASH/PSRAM support (saves ram)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_USE_FLASH_SECTIONS", + "name": "APP_BUILD_USE_FLASH_SECTIONS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, all date, time, and path information would be eliminated. A .gdbinit file would be create\nautomatically. (or will be append if you have one already)", + "id": "APP_REPRODUCIBLE_BUILD", + "name": "APP_REPRODUCIBLE_BUILD", + "range": null, + "title": "Enable reproducible build", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, this disables the linking of binary libraries in the application build. Note\nthat after enabling this Wi-Fi/Bluetooth will not work.", + "id": "APP_NO_BLOBS", + "name": "APP_NO_BLOBS", + "range": null, + "title": "No Binary Blobs", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Bootloaders before ESP-IDF v2.1 did less initialisation of the\nsystem clock. This setting needs to be enabled to build an app\nwhich can be booted by these older bootloaders.\n\nIf this setting is enabled, the app can be booted by any bootloader\nfrom IDF v1.0 up to the current version.\n\nIf this setting is disabled, the app can only be booted by bootloaders\nfrom IDF v2.1 or newer.\n\nEnabling this setting adds approximately 1KB to the app's IRAM usage.", + "id": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "name": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloaders before ESP-IDF v2.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Partition tables before ESP-IDF V3.1 do not contain an MD5 checksum\nfield, and the bootloader before ESP-IDF v3.1 cannot read a partition\ntable that contains an MD5 checksum field.\n\nEnable this option only if your app needs to boot on a bootloader and/or\npartition table that was generated from a version *before* ESP-IDF v3.1.\n\nIf this option and Flash Encryption are enabled at the same time, and any\ndata partitions in the partition table are marked Encrypted, then the\npartition encrypted flag should be manually verified in the app before accessing\nthe partition (see CVE-2021-27926).", + "id": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", + "name": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloader and partition table before ESP-IDF v3.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": null, + "id": "APP_INIT_CLK", + "name": "APP_INIT_CLK", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "build-type", + "title": "Build type", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_REPRODUCIBLE_BUILD", + "help": "If set, then the bootloader will be built with the current time/date stamp.\nIt is stored in the bootloader description\nstructure. If not set, time/date stamp will be excluded from bootloader image.\nThis can be useful for getting the\nsame binary image files made from the same source, but at different times.", + "id": "BOOTLOADER_COMPILE_TIME_DATE", + "name": "BOOTLOADER_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Project version. It is placed in \"version\" field of the esp_bootloader_desc structure.\nThe type of this field is \"uint32_t\".", + "id": "BOOTLOADER_PROJECT_VER", + "name": "BOOTLOADER_PROJECT_VER", + "range": [ + 0, + 4294967295 + ], + "title": "Project version", + "type": "int" + } + ], + "depends_on": null, + "id": "bootloader-config-bootloader-manager", + "title": "Bootloader manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", + "id": "BOOTLOADER_APP_SECURE_VERSION", + "name": "BOOTLOADER_APP_SECURE_VERSION", + "range": null, + "title": "eFuse secure version of app", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", + "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "range": null, + "title": "Size of the efuse secure version field", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", + "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "range": null, + "title": "Emulate operations with efuse secure version(only test)", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "help": "This option prevents rollback to previous firmware/application image with lower security version.", + "id": "BOOTLOADER_APP_ANTI_ROLLBACK", + "name": "BOOTLOADER_APP_ANTI_ROLLBACK", + "range": null, + "title": "Enable app anti-rollback support", + "type": "bool" + } + ], + "depends_on": null, + "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", + "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "range": null, + "title": "Enable app rollback support", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-application-rollback", + "title": "Application Rollback", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_RECOVERY_ENABLE", + "help": "Flash address where the recovery bootloader is stored.\nThis value must be written to the eFuse field (ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR)\nto activate the recovery bootloader in the ROM bootloader. The eFuse can be programmed\nusing espefuse.py or in the user application with the API esp_efuse_set_recovery_bootloader_offset().\nSetting this value in the config allows parttool.py to verify that it does not overlap with existing\npartitions in the partition table.\n\nThe address must be a multiple of the flash sector size (0x1000 bytes).\nThe eFuse field stores the offset in sectors.\nIf the feature is no longer needed or unused, you can burn the 0xFFF value to disable this feature in\nthe ROM bootloader.", + "id": "BOOTLOADER_RECOVERY_OFFSET", + "name": "BOOTLOADER_RECOVERY_OFFSET", + "range": null, + "title": "Recovery Bootloader Flash Offset", + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "help": "The secure version is the sequence number stored in the header of each bootloader.\n\nThe ROM Bootloader which runs the 2nd stage bootloader (PRIMARY or RECOVERY) checks that\nthe security version is greater or equal that recorded in the eFuse field.\nBootloaders that have a secure version in the image < secure version in efuse will not boot.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.", + "id": "BOOTLOADER_SECURE_VERSION", + "name": "BOOTLOADER_SECURE_VERSION", + "range": null, + "title": "Secure version of bootloader", + "type": "int" + } + ], + "depends_on": "BOOTLOADER_RECOVERY_ENABLE", + "help": "This option prevents rollback to previous bootloader image with lower security version.", + "id": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "name": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "range": null, + "title": "Enable bootloader rollback support", + "type": "bool" + } + ], + "depends_on": "SOC_RECOVERY_BOOTLOADER_SUPPORTED", + "help": "The recovery bootloader feature is implemented in the ROM bootloader. It is required for safe OTA\nupdates of the bootloader. The feature is activated when the eFuse field\n(ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR) is set, which defines the flash address of the\nrecovery bootloader. If activated and the primary bootloader fails to load, the ROM bootloader\nwill attempt to load the recovery bootloader from the address specified in eFuse.", + "id": "BOOTLOADER_RECOVERY_ENABLE", + "name": "BOOTLOADER_RECOVERY_ENABLE", + "range": null, + "title": "Enable Recovery Bootloader", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-recovery-bootloader-and-rollback", + "title": "Recovery Bootloader and Rollback", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Offset address that 2nd bootloader will be flashed to.\nThe value is determined by the ROM bootloader.\nIt's not configurable in ESP-IDF.", + "id": "BOOTLOADER_OFFSET_IN_FLASH", + "name": "BOOTLOADER_OFFSET_IN_FLASH", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", + "id": "bootloader-config-bootloader-optimization-level", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION", + "title": "Bootloader optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_VERSION_1", + "name": "BOOTLOADER_LOG_VERSION_1", + "range": null, + "title": "V1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_VERSION_2", + "name": "BOOTLOADER_LOG_VERSION_2", + "range": null, + "title": "V2", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the log version to be used by the ESP log component.\nThe app log version (CONFIG_LOG_VERSION) controls the version used in the bootloader,\npreventing the selection of different versions.\nFor description of V1 and V2 see CONFIG_LOG_VERSION.", + "id": "bootloader-config-log-log-version", + "name": "BOOTLOADER_LOG_VERSION", + "title": "Log version", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration sets the log version number based on the chosen log version.", + "id": "BOOTLOADER_LOG_VERSION", + "name": "BOOTLOADER_LOG_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_NONE", + "name": "BOOTLOADER_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_ERROR", + "name": "BOOTLOADER_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_WARN", + "name": "BOOTLOADER_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_INFO", + "name": "BOOTLOADER_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_DEBUG", + "name": "BOOTLOADER_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in bootloader logs.", + "id": "bootloader-config-log-bootloader-log-verbosity", + "name": "BOOTLOADER_LOG_LEVEL", + "title": "Bootloader log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_LEVEL", + "name": "BOOTLOADER_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "BOOTLOADER_LOG_COLORS", + "name": "BOOTLOADER_LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2", + "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", + "id": "BOOTLOADER_LOG_COLORS_SUPPORT", + "name": "BOOTLOADER_LOG_COLORS_SUPPORT", + "range": null, + "title": "Allow enabling color output at run time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", + "id": "bootloader-config-log-format-timestamp", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2", + "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", + "id": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", + "name": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", + "range": null, + "title": "Allow enabling timestamp output at run time", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-log-format", + "title": "Format", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_MODE_TEXT_EN", + "name": "BOOTLOADER_LOG_MODE_TEXT_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_MODE_BINARY_EN", + "name": "BOOTLOADER_LOG_MODE_BINARY_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", + "id": "BOOTLOADER_LOG_MODE_TEXT", + "name": "BOOTLOADER_LOG_MODE_TEXT", + "range": null, + "title": "Text Log Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", + "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", + "id": "BOOTLOADER_LOG_MODE_BINARY", + "name": "BOOTLOADER_LOG_MODE_BINARY", + "range": null, + "title": "Binary Log Mode", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "bootloader-config-log-settings-log-mode", + "name": "BOOTLOADER_LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "bootloader-config-log-settings", + "title": "Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "bootloader-config-log", + "title": "Log", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "help": "This setting is only used if the SPI flash pins have been overridden by setting the eFuses\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. The same pin is also used\nfor external SPIRAM if it is enabled.\n\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\nY and specify the GPIO number connected to the WP.", + "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "range": null, + "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "help": "The option \"Use custom SPI Flash WP Pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\nvalue to the GPIO number of the SPI flash WP pin.", + "id": "BOOTLOADER_SPI_WP_PIN", + "name": "BOOTLOADER_SPI_WP_PIN", + "range": null, + "title": "Custom SPI Flash WP Pin", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", + "id": "BOOTLOADER_FLASH_DC_AWARE", + "name": "BOOTLOADER_FLASH_DC_AWARE", + "range": null, + "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\nXMC chips will be forbidden to be used, when this option is disabled.\n\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\n\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", + "id": "BOOTLOADER_FLASH_XMC_SUPPORT", + "name": "BOOTLOADER_FLASH_XMC_SUPPORT", + "range": null, + "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_32BIT_ADDR", + "name": "BOOTLOADER_FLASH_32BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address quad flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", + "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", + "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-serial-flash-configurations", + "title": "Serial Flash Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "range": null, + "title": "1.8V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "range": null, + "title": "1.9V", + "type": "bool" + } + ], + "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", + "id": "bootloader-config-vddsdio-ldo-voltage", + "name": "BOOTLOADER_VDDSDIO_BOOST", + "title": "VDDSDIO LDO voltage", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "range": null, + "title": "Number of the GPIO input for factory reset", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "range": null, + "title": "Reset on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "range": null, + "title": "Reset on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Pin level for factory reset, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", + "title": "Factory reset GPIO level", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", + "id": "BOOTLOADER_OTA_DATA_ERASE", + "name": "BOOTLOADER_OTA_DATA_ERASE", + "range": null, + "title": "Clear OTA data on factory reset (select factory partition)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", + "id": "BOOTLOADER_DATA_FACTORY_RESET", + "name": "BOOTLOADER_DATA_FACTORY_RESET", + "range": null, + "title": "Comma-separated names of partitions to clear on factory reset", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input held at the configured level while\ndevice starts up. See settings below.", + "id": "BOOTLOADER_FACTORY_RESET", + "name": "BOOTLOADER_FACTORY_RESET", + "range": null, + "title": "GPIO triggers factory reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_APP_TEST", + "name": "BOOTLOADER_NUM_PIN_APP_TEST", + "range": null, + "title": "Number of the GPIO input to boot TEST partition", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_LOW", + "name": "BOOTLOADER_APP_TEST_PIN_LOW", + "range": null, + "title": "Enter test app on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_HIGH", + "name": "BOOTLOADER_APP_TEST_PIN_HIGH", + "range": null, + "title": "Enter test app on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "Pin level for app test, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level", + "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", + "title": "App test GPIO level", + "type": "choice" + } + ], + "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", + "id": "BOOTLOADER_APP_TEST", + "name": "BOOTLOADER_APP_TEST", + "range": null, + "title": "GPIO triggers boot from test app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", + "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", + "id": "BOOTLOADER_HOLD_TIME_GPIO", + "name": "BOOTLOADER_HOLD_TIME_GPIO", + "range": null, + "title": "Hold time of GPIO for reset/test mode (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Protects the unmapped memory regions of the entire address space from unintended accesses.\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\noperation on unmapped regions of the address space.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", + "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "range": null, + "title": "Enable protection for unmapped memory regions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\nthe app's own code.\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\nthe app_main() function.\n\nUse function wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", + "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "range": null, + "title": "Allows RTC watchdog disable in user code", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", + "id": "BOOTLOADER_WDT_TIME_MS", + "name": "BOOTLOADER_WDT_TIME_MS", + "range": [ + 0, + 120000 + ], + "title": "Timeout for RTC watchdog (ms)", + "type": "int" + } + ], + "depends_on": null, + "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", + "id": "BOOTLOADER_WDT_ENABLE", + "name": "BOOTLOADER_WDT_ENABLE", + "range": null, + "title": "Use RTC watchdog in start code", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", + "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.\n\nIt is possible to enable this option with Secure Boot if \"allow insecure\noptions\" is enabled, however it's strongly recommended to NOT enable it as\nit may allow a Secure Boot bypass.", + "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "range": null, + "title": "Skip image validation when exiting deep sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "help": "Some applications need to boot very quickly from power on. By default, the entire app binary\nis read from flash and verified which takes up a significant portion of the boot time.\n\nEnabling this option will skip validation of the app when the SoC boots from power on.\nNote that in this case it's not possible for the bootloader to detect if an app image is\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\nfirmware bug or physical damage.\n\nFollowing other reset types, the bootloader will still validate the app image. This increases\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.", + "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "range": null, + "title": "Skip image validation from power on reset (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "help": "Selecting this option prevents the bootloader from ever validating the app image before\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\nunbootable.\n\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\nConsider selecting \"Skip image validation from power on reset\" instead. However, if boot time\nis the only important factor then it can be enabled.", + "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "range": null, + "title": "Skip image validation always (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", + "id": "BOOTLOADER_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_RESERVE_RTC_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "range": null, + "title": "Include custom memory in the CRC calculation", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "range": null, + "title": "Size in bytes for custom purposes", + "type": "hex" + } + ], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "range": null, + "title": "Reserve RTC FAST memory for custom purposes", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "This option reserves an area in RTC FAST memory for the following features:\n- \"Skip image validation when exiting deep sleep\"\n- \"Reserve RTC FAST memory for custom purposes\"\n- \"GPIO triggers factory reset\"", + "id": "BOOTLOADER_RESERVE_RTC_MEM", + "name": "BOOTLOADER_RESERVE_RTC_MEM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config", + "title": "Bootloader config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_BOOT", + "name": "SECURE_SIGNED_ON_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_UPDATE", + "name": "SECURE_SIGNED_ON_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", + "help": null, + "id": "SECURE_SIGNED_APPS", + "name": "SECURE_SIGNED_APPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", + "help": null, + "id": "SECURE_BOOT_V2_RSA_SUPPORTED", + "name": "SECURE_BOOT_V2_RSA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V2_ECC", + "help": null, + "id": "SECURE_BOOT_V2_ECC_SUPPORTED", + "name": "SECURE_BOOT_V2_ECC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V1", + "help": null, + "id": "SECURE_BOOT_V1_SUPPORTED", + "name": "SECURE_BOOT_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_REV_MIN_FULL >= 300", + "help": null, + "id": "SECURE_BOOT_V2_PREFERRED", + "name": "SECURE_BOOT_V2_PREFERRED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_ECDSA_ENABLED", + "name": "SECURE_BOOT_V2_ECDSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_RSA_ENABLED", + "name": "SECURE_BOOT_V2_RSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_BOOT", + "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", + "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "range": null, + "title": "Require signed app images", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", + "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "range": null, + "title": "ECDSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && !(IDF_TARGET_ESP32C5 && ESP32C5_REV_MIN_FULL < 1) && ", + "help": "Appends the RSA-3072 based Signature block to the application.\nRefer to before enabling.", + "id": "SECURE_SIGNED_APPS_RSA_SCHEME", + "name": "SECURE_SIGNED_APPS_RSA_SCHEME", + "range": null, + "title": "RSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", + "help": "For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\nRefer to documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "range": null, + "title": "ECDSA (V2)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "help": "Select the Secure App signing scheme. Depends on the Chip Revision.\nThere are two secure boot versions:\n\n1. Secure boot V1\n - Legacy custom secure boot scheme. Supported in ESP32 SoC.\n\n2. Secure boot V2\n - RSA based secure boot scheme.\n Supported in ESP32-ECO3 (ESP32 Chip Revision 3 onwards), ESP32-S2, ESP32-C3, ESP32-S3 SoCs.\n\n - ECDSA based secure boot scheme. Supported in ESP32-C2 SoC.", + "id": "security-features-app-signing-scheme", + "name": "SECURE_SIGNED_APPS_SCHEME", + "title": "App Signing Scheme", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", + "range": null, + "title": "Using ECC curve NISTP192", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", + "range": null, + "title": "Using ECC curve NISTP256 (Recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && SOC_ECDSA_SUPPORT_CURVE_P384 && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", + "range": null, + "title": "Using ECC curve NISTP384 (Recommended)", + "type": "bool" + } + ], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "help": "Select the ECDSA key size. Three key sizes are supported depending upon on the target:\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n- 384 bit key using NISTP384 curve (Recommended)\n\nThe advantage of using 384 and 256 bit keys is the extra randomness which makes it difficult to be\nbruteforced compared to 192 bit key.\nAt present, both key sizes are practically implausible to bruteforce.", + "id": "security-features-ecdsa-key-size", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_SIZE", + "title": "ECDSA key size", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME", + "help": "If this option is set, the bootloader will be compiled with code to verify that an app is signed before\nbooting it.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\nusers will want to leave it disabled.", + "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "range": null, + "title": "Bootloader verifies app signatures", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "help": "If this option is set, any OTA updated apps will have the signature verified before being considered valid.\n\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\nupdates, or esp_image_format.h APIs are used to verify apps.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\nattackers by preventing spoofing of OTA updates.", + "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "range": null, + "title": "Verify app signature on update", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && ", + "help": "Build a bootloader which enables secure boot version 1 on first boot.\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_V1_ENABLED", + "name": "SECURE_BOOT_V1_ENABLED", + "range": null, + "title": "Enable Secure Boot version 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && ", + "help": "Build a bootloader which enables Secure Boot version 2 on first boot.\nRefer to Secure Boot V2 section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_V2_ENABLED", + "name": "SECURE_BOOT_V2_ENABLED", + "range": null, + "title": "Enable Secure Boot version 2", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT", + "help": "Select the Secure Boot Version. Depends on the Chip Revision.\nSecure Boot V2 is the new RSA / ECDSA based secure boot scheme.\n\n - RSA based scheme is supported in ESP32 (Revision 3 onwards), ESP32-S2, ESP32-C3 (ECO3), ESP32-S3.\n - ECDSA based scheme is supported in ESP32-C2 SoC.\n\nPlease note that, RSA or ECDSA secure boot is property of specific SoC based on its HW design, supported\ncrypto accelerators, die-size, cost and similar parameters. Please note that RSA scheme has requirement\nfor bigger key sizes but at the same time it is comparatively faster than ECDSA verification.\n\nSecure Boot V1 is the AES based (custom) secure boot scheme supported in ESP32 SoC.", + "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version", + "name": "SECURE_BOOT_VERSION", + "title": "Select secure boot version", + "type": "choice" + } + ], + "depends_on": "SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)", + "help": "Build a bootloader which enables Secure Boot on first boot.\n\nOnce enabled, Secure Boot will not boot a modified bootloader. The bootloader will only load a partition\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\nupdated apps once secure boot is enabled.\n\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.", + "id": "SECURE_BOOT", + "name": "SECURE_BOOT", + "range": null, + "title": "Enable hardware Secure Boot in bootloader (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "On first boot, the bootloader will generate a key which is not readable externally or by software. A\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\nboot.\n\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.", + "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "range": null, + "title": "One-time flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\n\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\nkey.\n\nThis option is less secure than one-time flash, because a leak of the digest key from one device\nallows reflashing of any device that uses it.", + "id": "SECURE_BOOTLOADER_REFLASHABLE", + "name": "SECURE_BOOTLOADER_REFLASHABLE", + "range": null, + "title": "Reflashable", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT_V1_ENABLED", + "help": null, + "id": "security-features-secure-bootloader-mode", + "name": "SECURE_BOOTLOADER_MODE", + "title": "Secure bootloader mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "help": "Path to the key file used to sign app images.\n\nKey file is an ECDSA private key (NIST256p curve) in PEM format for Secure Boot V1.\nKey file is an RSA private key in PEM format for Secure Boot V2.\n\nPath is evaluated relative to the project directory.\n\nYou can generate a new signing key by running the following command:\nespsecure.py generate_signing_key secure_boot_signing_key.pem\n\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.", + "id": "SECURE_BOOT_SIGNING_KEY", + "name": "SECURE_BOOT_SIGNING_KEY", + "range": null, + "title": "Secure boot private signing key", + "type": "string" + } + ], + "depends_on": "SECURE_SIGNED_APPS", + "help": "Once secure boot or signed app requirement is enabled, app images are required to be signed.\n\nIf enabled (default), these binary files are signed as part of the build process. The file named in\n\"Secure boot private signing key\" will be used to sign the image.\n\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py.\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\n(for example, on a remote signing server.)", + "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "range": null, + "title": "Sign binaries during build", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES", + "help": "Path to a public key file used to verify signed images.\nSecure Boot V1: This ECDSA public key is compiled into the bootloader and/or\napp, to verify app images.\n\nKey file is in raw binary format, and can be extracted from a\nPEM formatted private key using the espsecure.py\nextract_public_key command.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_VERIFICATION_KEY", + "name": "SECURE_BOOT_VERIFICATION_KEY", + "range": null, + "title": "Secure boot public signature verification key", + "type": "string" + }, + { + "children": [], + "depends_on": "SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "help": "If this option is set, ROM bootloader will revoke the public key digest burned in efuse block\nif it fails to verify the signature of software bootloader with it.\nRevocation of keys does not happen when enabling secure boot. Once secure boot is enabled,\nkey revocation checks will be done on subsequent boot-up, while verifying the software bootloader\n\nThis feature provides a strong resistance against physical attacks on the device.\n\nNOTE: Once a digest slot is revoked, it can never be used again to verify an image\nThis can lead to permanent bricking of the device, in case all keys are revoked\nbecause of signature verification failure.", + "id": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", + "name": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", + "range": null, + "title": "Enable Aggressive key revoke strategy", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED", + "help": "If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\n\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Do not disable the ability to further read protect eFuses", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED", + "help": "When Secure Boot V2 is enabled, by default the bootloader is not flashed along with other artifacts\nlike the application and the partition table images, i.e. bootloader has to be separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", + "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "range": null, + "title": "Flash bootloader along with other artifacts when using the default flash command", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "range": null, + "title": "No encoding (256 bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "range": null, + "title": "3/4 encoding (192 bit key)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", + "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", + "id": "security-features-hardware-key-encoding", + "name": "SECURE_BOOTLOADER_KEY_ENCODING", + "title": "Hardware Key Encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_BOOT", + "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_INSECURE", + "name": "SECURE_BOOT_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "range": null, + "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128", + "name": "SECURE_FLASH_ENCRYPTION_AES128", + "range": null, + "title": "AES-128 (256-bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES256", + "name": "SECURE_FLASH_ENCRYPTION_AES256", + "range": null, + "title": "AES-256 (512-bit key)", + "type": "bool" + } + ], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", + "help": "Size of generated XTS-AES key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated XTS-AES key", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "range": null, + "title": "Development (NOT SECURE)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "range": null, + "title": "Release", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "By default Development mode is enabled which allows ROM download mode to perform flash encryption\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\nto flash.\n\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\npossible for the device in ROM Download Mode to use the flash encryption hardware.\n\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\nFor CI tests we use IDF_CI_BUILD to bypass it (\"export IDF_CI_BUILD=1\").\nWe do not recommend bypassing it for other purposes.\n\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", + "name": "SECURE_FLASH_ENCRYPTION_MODE", + "title": "Enable usage mode", + "type": "choice" + } + ], + "depends_on": null, + "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", + "id": "SECURE_FLASH_ENC_ENABLED", + "name": "SECURE_FLASH_ENC_ENABLED", + "range": null, + "title": "Enable flash encryption on boot (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", + "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_ROM_BASIC", + "name": "SECURE_BOOT_ALLOW_ROM_BASIC", + "range": null, + "title": "Leave ROM BASIC Interpreter available on reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_JTAG", + "name": "SECURE_BOOT_ALLOW_JTAG", + "range": null, + "title": "Allow JTAG Debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", + "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "range": null, + "title": "Allow app partition length not 64KB aligned", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "help": "If not set (default), during startup in the app all unused digest slots will be revoked.\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\nIf set, it means that you have a plan to use unused digests slots later.\n\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", + "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "range": null, + "title": "Leave unused digest slots available (not revoke)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "range": null, + "title": "Leave UART bootloader encryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", + "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "range": null, + "title": "Leave UART bootloader decryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", + "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "range": null, + "title": "Leave UART bootloader flash cache enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", + "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "range": null, + "title": "Require flash encryption to be already enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "help": "If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\nDue to other eFuses are linked with the same write protection bit (see the list below) then\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\nto give a chance to turn on the chip into the release mode later.\n\nList of eFuses with the same write protection bit:\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\n\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-H2 & ESP32H21: DIS_ICACHE, DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD,\nSPI_DOWNLOAD_MSPI_DIS, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT,\nDIS_USB_SERIAL_JTAG\n\nESP32-S2: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB, DIS_TWAI, DIS_BOOT_REMAP, SOFT_DIS_JTAG,\nHARD_DIS_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-S3: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB_OTG, DIS_TWAI, DIS_APP_CPU, DIS_PAD_JTAG,\nDIS_DOWNLOAD_MANUAL_ENCRYPT, DIS_USB_JTAG, DIS_USB_SERIAL_JTAG, STRAP_JTAG_SEL, USB_PHY_SEL.", + "id": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", + "range": null, + "title": "Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)", + "type": "bool" + } + ], + "depends_on": null, + "id": "security-features-potentially-insecure-options", + "title": "Potentially insecure options", + "type": "menu" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED && !SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "help": "If set (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", + "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "range": null, + "title": "Encrypt only the app image that is present in the partition of type app", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "If set (default), in an app during startup code,\nthere is a check of the flash encryption eFuse bit is on\n(as the bootloader should already have set it).\nThe app requires this bit is on to continue work otherwise abort.\n\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.", + "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "range": null, + "title": "Check Flash Encryption enabled on app startup", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "range": null, + "title": "Low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "range": null, + "title": "Medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "range": null, + "title": "High", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "help": "The strength of the pseudo rounds functions can be configured to low, medium and high,\neach denoting the values that would be stored in the efuses field.\nBy default the value to set to low.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nflash encryption/decryption operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide documentation.", + "id": "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "title": "Strength of the pseudo rounds function", + "type": "choice" + } + ], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", + "help": "If set (default), the bootloader will permanently enable the XTS-AES peripheral's pseudo rounds function.\nNote: Enabling this config would burn an efuse.", + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "range": null, + "title": "Permanently enable XTS-AES's pseudo rounds function", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_ROM_DL_MODE_ENABLED", + "name": "SECURE_ROM_DL_MODE_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "If set, during startup the app will burn an eFuse bit to permanently disable the UART ROM\nDownload Mode. This prevents any future use of esptool.py, espefuse.py and similar tools.\n\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\nthen an error is printed instead.\n\nIt is recommended to enable this option in any production application where Flash\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\n\nIt is also possible to permanently disable Download Mode by calling\nesp_efuse_disable_rom_download_mode() at runtime.", + "id": "SECURE_DISABLE_ROM_DL_MODE", + "name": "SECURE_DISABLE_ROM_DL_MODE", + "range": null, + "title": "UART ROM download mode (Permanently disabled (recommended))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SUPPORTS_SECURE_DL_MODE && ", + "help": "If set, during startup the app will burn an eFuse bit to permanently switch the UART ROM\nDownload Mode into a separate Secure Download mode. This option can only work if\nDownload Mode is not already disabled by eFuse.\n\nSecure Download mode limits the use of Download Mode functions to update SPI config,\nchanging baud rate, basic flash write and a command to return a summary of currently\nenabled security features (`get_security_info`).\n\nSecure Download mode is not compatible with the esptool.py flasher stub feature,\nespefuse.py, read/writing memory or registers, encrypted download, or any other\nfeatures that interact with unsupported Download Mode commands.\n\nSecure Download mode should be enabled in any application where Flash Encryption\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\nthe benefits of the security features, but it increases the potential \"attack\nsurface\" for an attacker to try and bypass them with a successful physical attack.\n\nIt is also possible to enable secure download mode at runtime by calling\nesp_efuse_enable_rom_secure_download_mode()\n\nNote: Secure Download mode is not available for ESP32.", + "id": "SECURE_ENABLE_SECURE_ROM_DL_MODE", + "name": "SECURE_ENABLE_SECURE_ROM_DL_MODE", + "range": null, + "title": "UART ROM download mode (Permanently switch to Secure mode (recommended))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a potentially insecure option.\nEnabling this option will allow the full UART download mode to stay enabled.\nThis option SHOULD NOT BE ENABLED for production use cases.", + "id": "SECURE_INSECURE_ALLOW_DL_MODE", + "name": "SECURE_INSECURE_ALLOW_DL_MODE", + "range": null, + "title": "UART ROM download mode (Enabled (not recommended))", + "type": "bool" + } + ], + "depends_on": "(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)", + "help": null, + "id": "security-features-uart-rom-download-mode", + "name": "SECURE_UART_ROM_DL_MODE", + "title": "UART ROM download mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "security-features", + "title": "Security features", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_REPRODUCIBLE_BUILD", + "help": "If set, then the app will be built with the current time/date stamp. It is stored in the app description\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\nsame binary image files made from the same source, but at different times.", + "id": "APP_COMPILE_TIME_DATE", + "name": "APP_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for app", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The PROJECT_VER variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", + "id": "APP_EXCLUDE_PROJECT_VER_VAR", + "name": "APP_EXCLUDE_PROJECT_VER_VAR", + "range": null, + "title": "Exclude PROJECT_VER from firmware image", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The PROJECT_NAME variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", + "id": "APP_EXCLUDE_PROJECT_NAME_VAR", + "name": "APP_EXCLUDE_PROJECT_NAME_VAR", + "range": null, + "title": "Exclude PROJECT_NAME from firmware image", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "APP_PROJECT_VER_FROM_CONFIG", + "help": "Project version", + "id": "APP_PROJECT_VER", + "name": "APP_PROJECT_VER", + "range": null, + "title": "Project version", + "type": "string" + } + ], + "depends_on": null, + "help": "If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\nOther ways to set PROJECT_VER will be ignored.", + "id": "APP_PROJECT_VER_FROM_CONFIG", + "name": "APP_PROJECT_VER_FROM_CONFIG", + "range": null, + "title": "Get the project version from Kconfig", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "At startup, the app will read the embedded APP ELF SHA-256 hash value from flash\nand convert it into a string and store it in a RAM buffer.\nThis ensures the panic handler and core dump will be able to print this string\neven when cache is disabled.\nThe size of the buffer is APP_RETRIEVE_LEN_ELF_SHA plus the null terminator.\nChanging this value will change the size of this buffer, in bytes.", + "id": "APP_RETRIEVE_LEN_ELF_SHA", + "name": "APP_RETRIEVE_LEN_ELF_SHA", + "range": [ + 8, + 64 + ], + "title": "The length of APP ELF SHA is stored in RAM(chars)", + "type": "int" + } + ], + "depends_on": null, + "id": "application-manager", + "title": "Application manager", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CRC_LE", + "name": "ESP_ROM_HAS_CRC_LE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CRC_BE", + "name": "ESP_ROM_HAS_CRC_BE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_MZ_CRC32", + "name": "ESP_ROM_HAS_MZ_CRC32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_JPEG_DECODE", + "name": "ESP_ROM_HAS_JPEG_DECODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_UART_CLK_IS_XTAL", + "name": "ESP_ROM_UART_CLK_IS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_OTG_NUM", + "name": "ESP_ROM_USB_OTG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ERASE_0_REGION_BUG", + "name": "ESP_ROM_HAS_ERASE_0_REGION_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", + "name": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_GET_CLK_FREQ", + "name": "ESP_ROM_GET_CLK_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HAL_WDT", + "name": "ESP_ROM_HAS_HAL_WDT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", + "name": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_LAYOUT_TABLE", + "name": "ESP_ROM_HAS_LAYOUT_TABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH", + "name": "ESP_ROM_HAS_SPI_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH_MMAP", + "name": "ESP_ROM_HAS_SPI_FLASH_MMAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ETS_PRINTF_BUG", + "name": "ESP_ROM_HAS_ETS_PRINTF_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB", + "name": "ESP_ROM_HAS_NEWLIB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", + "name": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", + "name": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG", + "name": "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG", + "name": "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CACHE_WRITEBACK_BUG", + "name": "ESP_ROM_HAS_CACHE_WRITEBACK_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SW_FLOAT", + "name": "ESP_ROM_HAS_SW_FLOAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_VERSION", + "name": "ESP_ROM_HAS_VERSION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "name": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_CONSOLE_OUTPUT_SECONDARY", + "name": "ESP_ROM_CONSOLE_OUTPUT_SECONDARY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Always print ROM logs, this is the default behavior.", + "id": "BOOT_ROM_LOG_ALWAYS_ON", + "name": "BOOT_ROM_LOG_ALWAYS_ON", + "range": null, + "title": "Always Log", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Don't print ROM logs.", + "id": "BOOT_ROM_LOG_ALWAYS_OFF", + "name": "BOOT_ROM_LOG_ALWAYS_OFF", + "range": null, + "title": "Permanently disable logging", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Print ROM logs when GPIO level is high during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", + "id": "BOOT_ROM_LOG_ON_GPIO_HIGH", + "name": "BOOT_ROM_LOG_ON_GPIO_HIGH", + "range": null, + "title": "Log on GPIO High", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Print ROM logs when GPIO level is low during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", + "id": "BOOT_ROM_LOG_ON_GPIO_LOW", + "name": "BOOT_ROM_LOG_ON_GPIO_LOW", + "range": null, + "title": "Log on GPIO Low", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_ESP32", + "help": "Controls the Boot ROM log behavior.\nThe rom log behavior can only be changed for once,\nspecific eFuse bit(s) will be burned at app boot stage.", + "id": "boot-rom-behavior-permanently-change-boot-rom-output", + "name": "BOOT_ROM_LOG_SCHEME", + "title": "Permanently change Boot ROM output", + "type": "choice" + } + ], + "depends_on": null, + "id": "boot-rom-behavior", + "title": "Boot ROM Behavior", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The flasher tool sends a precompiled download stub first by default. That stub allows things\nlike compressed downloads and more. Usually you should not need to disable that feature", + "id": "ESPTOOLPY_NO_STUB", + "name": "ESPTOOLPY_NO_STUB", + "range": null, + "title": "Disable download stub", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_OCT_FLASH", + "name": "ESPTOOLPY_OCT_FLASH", + "range": null, + "title": "Enable Octal Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config option helps decide whether flash is Quad or Octal, but please note some limitations:\n\n1. If the flash chip is an Octal one, even if one of \"QIO\", \"QOUT\", \"DIO\", \"DOUT\" options is\n selected in `ESPTOOLPY_FLASHMODE`, our code will automatically change the\n mode to \"OPI\" and the sample mode will be STR.\n2. If the flash chip is a Quad one, even if \"OPI\" is selected in `ESPTOOLPY_FLASHMODE`, our code will\n automatically change the mode to \"DIO\".\n3. This option is mainly to improve the out-of-box experience of developers. It doesn't guarantee\n the feature-complete. Some code still rely on `ESPTOOLPY_OCT_FLASH`. Please do not rely on this option\n when you are pretty sure that you are using Octal flash.\n In this case, please enable `ESPTOOLPY_OCT_FLASH` option, then you can choose `DTR` sample mode\n in `ESPTOOLPY_FLASH_SAMPLE_MODE`. Otherwise, only `STR` mode is available.\n4. Enabling this feature reduces available internal RAM size (around 900 bytes).\n If your IRAM space is insufficient and you're aware of your flash type,\n disable this option and select corresponding flash type options.", + "id": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "name": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "range": null, + "title": "Choose flash mode automatically (please read help)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QIO", + "name": "ESPTOOLPY_FLASHMODE_QIO", + "range": null, + "title": "QIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QOUT", + "name": "ESPTOOLPY_FLASHMODE_QOUT", + "range": null, + "title": "QOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DIO", + "name": "ESPTOOLPY_FLASHMODE_DIO", + "range": null, + "title": "DIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DOUT", + "name": "ESPTOOLPY_FLASHMODE_DOUT", + "range": null, + "title": "DOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_OPI", + "name": "ESPTOOLPY_FLASHMODE_OPI", + "range": null, + "title": "OPI", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", + "id": "serial-flasher-config-flash-spi-mode", + "name": "ESPTOOLPY_FLASHMODE", + "title": "Flash SPI mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "range": null, + "title": "STR Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", + "range": null, + "title": "DTR Mode", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-sampling-mode", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", + "title": "Flash Sampling Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHMODE", + "name": "ESPTOOLPY_FLASHMODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SPI_FLASH_HPM_ON || ESPTOOLPY_OCT_FLASH) && (ESPTOOLPY_FLASH_SAMPLE_MODE_STR || IDF_EXPERIMENTAL_FEATURES) && ", + "help": "- Optional feature for QSPI Flash. Read docs and enable `CONFIG_SPI_FLASH_HPM_ENA` first!\n- Flash 120 MHz SDR mode is stable.\n- Flash 120 MHz DDR mode is an experimental feature, it works when\n the temperature is stable.\n\n Risks:\n If your chip powers on at a certain temperature, then after the temperature\n increases or decreases by approximately 20 Celsius degrees (depending on the\n chip), the program will crash randomly.", + "id": "ESPTOOLPY_FLASHFREQ_120M", + "name": "ESPTOOLPY_FLASHFREQ_120M", + "range": null, + "title": "120 MHz (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-spi-speed", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ", + "name": "ESPTOOLPY_FLASHFREQ", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_1MB", + "name": "ESPTOOLPY_FLASHSIZE_1MB", + "range": null, + "title": "1 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_2MB", + "name": "ESPTOOLPY_FLASHSIZE_2MB", + "range": null, + "title": "2 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_4MB", + "name": "ESPTOOLPY_FLASHSIZE_4MB", + "range": null, + "title": "4 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_8MB", + "name": "ESPTOOLPY_FLASHSIZE_8MB", + "range": null, + "title": "8 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_16MB", + "name": "ESPTOOLPY_FLASHSIZE_16MB", + "range": null, + "title": "16 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_32MB", + "name": "ESPTOOLPY_FLASHSIZE_32MB", + "range": null, + "title": "32 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_64MB", + "name": "ESPTOOLPY_FLASHSIZE_64MB", + "range": null, + "title": "64 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_128MB", + "name": "ESPTOOLPY_FLASHSIZE_128MB", + "range": null, + "title": "128 MB", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.\n\nEnabling this option turns off the image protection against corruption\nby a SHA256 digest. Updating the bootloader image before flashing would\ninvalidate the digest.", + "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "range": null, + "title": "Detect flash size when flashing bootloader", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_RESET", + "name": "ESPTOOLPY_BEFORE_RESET", + "range": null, + "title": "Reset to bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_NORESET", + "name": "ESPTOOLPY_BEFORE_NORESET", + "range": null, + "title": "No reset", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-before-flashing", + "name": "ESPTOOLPY_BEFORE", + "title": "Before flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_BEFORE", + "name": "ESPTOOLPY_BEFORE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_RESET", + "name": "ESPTOOLPY_AFTER_RESET", + "range": null, + "title": "Reset after flashing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_NORESET", + "name": "ESPTOOLPY_AFTER_NORESET", + "range": null, + "title": "Stay in bootloader", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-after-flashing", + "name": "ESPTOOLPY_AFTER", + "title": "After flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "serial-flasher-config", + "title": "Serial flasher config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This is the default partition table, designed to fit into a 2MB or\nlarger flash with a single 1MB app partition.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", + "id": "PARTITION_TABLE_SINGLE_APP", + "name": "PARTITION_TABLE_SINGLE_APP", + "range": null, + "title": "Single factory app, no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a variation of the default partition table, that expands\nthe 1MB app partition size to 1.5MB to fit more code.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE", + "range": null, + "title": "Single factory app (large), no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with a factory app\npartition plus two OTA app partitions. All are 1MB, so this\npartition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota.csv", + "id": "PARTITION_TABLE_TWO_OTA", + "name": "PARTITION_TABLE_TWO_OTA", + "range": null, + "title": "Factory app, two OTA definitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", + "id": "PARTITION_TABLE_TWO_OTA_LARGE", + "name": "PARTITION_TABLE_TWO_OTA_LARGE", + "range": null, + "title": "Two large size OTA partitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Specify the path to the partition table CSV to use for your project.\n\nConsult the Partition Table section in the ESP-IDF Programmers Guide\nfor more information.", + "id": "PARTITION_TABLE_CUSTOM", + "name": "PARTITION_TABLE_CUSTOM", + "range": null, + "title": "Custom partition table CSV", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv", + "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "range": null, + "title": "Single factory app, no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the \"Single factory app (large), no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "range": null, + "title": "Single factory app (large), no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the \"Factory app, two OTA definitions\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv", + "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "range": null, + "title": "Factory app, two OTA definitions, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports the ESP-TEE framework. See the Trusted Execution Environment (TEE) section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_tee.csv", + "id": "PARTITION_TABLE_SINGLE_APP_TEE", + "name": "PARTITION_TABLE_SINGLE_APP_TEE", + "range": null, + "title": "Single factory app, no OTA, TEE", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This is a basic OTA-enabled partition table with two OTA app partitions each\nfor the TEE and the user (REE) application. The user app partition sizes are 1536K,\nso this partition table requires 4MB or larger flash size. See the\nTrusted Execution Environment (TEE) section in the ESP-IDF Programmers Guide\nfor more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_tee.csv", + "id": "PARTITION_TABLE_TWO_OTA_TEE", + "name": "PARTITION_TABLE_TWO_OTA_TEE", + "range": null, + "title": "Two OTA definitions, TEE", + "type": "bool" + } + ], + "depends_on": null, + "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. These are mostly intended\nfor example and development use, it's expect that for production use you\nwill copy one of these CSV files and create a custom partition CSV for\nyour application.", + "id": "partition-table-partition-table", + "name": "PARTITION_TABLE_TYPE", + "title": "Partition Table", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", + "id": "PARTITION_TABLE_CUSTOM_FILENAME", + "name": "PARTITION_TABLE_CUSTOM_FILENAME", + "range": null, + "title": "Custom partition CSV file", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PARTITION_TABLE_FILENAME", + "name": "PARTITION_TABLE_FILENAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", + "id": "PARTITION_TABLE_OFFSET", + "name": "PARTITION_TABLE_OFFSET", + "range": null, + "title": "Offset of partition table", + "type": "hex" + }, + { + "children": [], + "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", + "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", + "id": "PARTITION_TABLE_MD5", + "name": "PARTITION_TABLE_MD5", + "range": null, + "title": "Generate an MD5 checksum for the partition table", + "type": "bool" + } + ], + "depends_on": null, + "id": "partition-table", + "title": "Partition Table", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEBUG", + "name": "COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_SIZE", + "name": "COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_PERF", + "name": "COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_NONE", + "name": "COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", + "id": "compiler-options-optimization-level", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable assertions. Assertion content and line number will be printed on failure.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "range": null, + "title": "Silent (saves code size)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "range": null, + "title": "Disabled (sets -DNDEBUG)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", + "id": "compiler-options-assertion-level", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "title": "Assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", + "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "range": null, + "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_RVFPLIB && ", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "range": null, + "title": "librvfp", + "type": "bool" + } + ], + "depends_on": null, + "help": "In the soft-fp part of libgcc, riscv version is written in C,\nand handles all edge cases in IEEE754, which makes it larger\nand performance is slow.\n\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\ninteger processors, for single and double-precision FP.\nRVfplib is \"fast\", but it has a few exceptions from IEEE 754 compliance.", + "id": "compiler-options-compiler-float-lib-source", + "name": "COMPILER_FLOAT_LIB_FROM", + "title": "Compiler float lib source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, the error messages will be discarded in following check macros:\n- ESP_RETURN_ON_ERROR\n- ESP_EXIT_ON_ERROR\n- ESP_RETURN_ON_FALSE\n- ESP_EXIT_ON_FALSE", + "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "range": null, + "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\nwith paths relative to the placeholder string \"IDF\", and convert paths inside the\nproject directory to relative paths.\n\nThis allows building the project with assertions or other code that embeds file paths,\nwithout the binary containing the exact path to the IDF or project directories.\n\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\n-ffile-prefix-map arguments.", + "id": "COMPILER_HIDE_PATHS_MACROS", + "is_menuconfig": true, + "name": "COMPILER_HIDE_PATHS_MACROS", + "range": null, + "title": "Replace ESP-IDF and project paths in binaries", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_CXX_EXCEPTIONS", + "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", + "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "range": null, + "title": "Emergency Pool Size", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", + "id": "COMPILER_CXX_EXCEPTIONS", + "is_menuconfig": true, + "name": "COMPILER_CXX_EXCEPTIONS", + "range": null, + "title": "Enable C++ exceptions", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", + "id": "COMPILER_CXX_RTTI", + "name": "COMPILER_CXX_RTTI", + "range": null, + "title": "Enable C++ run-time type info (RTTI)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NONE", + "name": "COMPILER_STACK_CHECK_MODE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NORM", + "name": "COMPILER_STACK_CHECK_MODE_NORM", + "range": null, + "title": "Normal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_STRONG", + "name": "COMPILER_STACK_CHECK_MODE_STRONG", + "range": null, + "title": "Strong", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_ALL", + "name": "COMPILER_STACK_CHECK_MODE_ALL", + "range": null, + "title": "Overall", + "type": "bool" + } + ], + "depends_on": null, + "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL\n\nThe performance impact includes increasing the amount of stack memory required for each task.", + "id": "compiler-options-stack-smashing-protection-mode", + "name": "COMPILER_STACK_CHECK_MODE", + "title": "Stack smashing protection mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Stack smashing protection.", + "id": "COMPILER_STACK_CHECK", + "name": "COMPILER_STACK_CHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", + "id": "COMPILER_NO_MERGE_CONSTANTS", + "name": "COMPILER_NO_MERGE_CONSTANTS", + "range": null, + "title": "Disable merging const sections", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", + "id": "COMPILER_WARN_WRITE_STRINGS", + "name": "COMPILER_WARN_WRITE_STRINGS", + "range": null, + "title": "Enable -Wwrite-strings warning flag", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Adds -msave-restore to C/C++ compilation flags.\n\nWhen this flag is enabled, compiler will call library functions to\nsave/restore registers in function prologues/epilogues. This results\nin lower overall code size, at the expense of slightly reduced performance.\n\nThis option can be enabled for RISC-V targets only.", + "id": "COMPILER_SAVE_RESTORE_LIBCALLS", + "name": "COMPILER_SAVE_RESTORE_LIBCALLS", + "range": null, + "title": "Enable -msave-restore flag to reduce code size", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", + "id": "COMPILER_DISABLE_DEFAULT_ERRORS", + "name": "COMPILER_DISABLE_DEFAULT_ERRORS", + "range": null, + "title": "Disable errors for default warnings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", + "id": "COMPILER_DISABLE_GCC12_WARNINGS", + "name": "COMPILER_DISABLE_GCC12_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 12", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", + "id": "COMPILER_DISABLE_GCC13_WARNINGS", + "name": "COMPILER_DISABLE_GCC13_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 13", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", + "id": "COMPILER_DISABLE_GCC14_WARNINGS", + "name": "COMPILER_DISABLE_GCC14_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 14", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", + "id": "COMPILER_DUMP_RTL_FILES", + "name": "COMPILER_DUMP_RTL_FILES", + "range": null, + "title": "Dump RTL files during compilation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_GCCLIB", + "name": "COMPILER_RT_LIB_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_CLANGRT", + "name": "COMPILER_RT_LIB_CLANGRT", + "range": null, + "title": "libclang_rt", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_HOST", + "name": "COMPILER_RT_LIB_HOST", + "range": null, + "title": "Host", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", + "id": "compiler-options-compiler-runtime-library", + "name": "COMPILER_RT_LIB", + "title": "Compiler runtime library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_RT_LIB_NAME", + "name": "COMPILER_RT_LIB_NAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Places orphan sections with a warning message.", + "id": "COMPILER_ORPHAN_SECTIONS_WARNING", + "name": "COMPILER_ORPHAN_SECTIONS_WARNING", + "range": null, + "title": "Place with warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places orphan sections without a warning/error message.", + "id": "COMPILER_ORPHAN_SECTIONS_PLACE", + "name": "COMPILER_ORPHAN_SECTIONS_PLACE", + "range": null, + "title": "Place silently", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_LINUX", + "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", + "id": "compiler-options-orphan-sections-handling", + "name": "COMPILER_ORPHAN_SECTIONS", + "title": "Orphan sections handling", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", + "id": "COMPILER_STATIC_ANALYZER", + "name": "COMPILER_STATIC_ANALYZER", + "range": null, + "title": "Enable compiler static analyzer", + "type": "bool" + } + ], + "depends_on": null, + "id": "compiler-options", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_CUSTOM_TABLE", + "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "EFUSE_CUSTOM_TABLE_FILENAME", + "name": "EFUSE_CUSTOM_TABLE_FILENAME", + "range": null, + "title": "Custom eFuse CSV file", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to generate a structure for eFuse from the CSV file.", + "id": "EFUSE_CUSTOM_TABLE", + "name": "EFUSE_CUSTOM_TABLE", + "range": null, + "title": "Use custom eFuse table", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", + "help": "In addition to the \"Simulate eFuse operations in RAM\" option, this option just adds\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\nshould have the `efuse` partition. partition.csv: \"efuse_em, data, efuse, , 0x2000,\"\n\nDuring startup, the eFuses are copied from flash or,\nin case if flash is empty, from real eFuse to RAM and then update flash.\nThis mode is useful when need to keep changes after reboot\n(testing secure_boot and flash_encryption).", + "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "range": null, + "title": "Keep eFuses in flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "EFUSE_VIRTUAL", + "help": "If enabled, log efuse burns. This shows changes that would be made.", + "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "range": null, + "title": "Log all virtual writes", + "type": "bool" + } + ], + "depends_on": null, + "help": "If \"n\" - No virtual mode. All eFuse operations are real and use eFuse registers.\nIf \"y\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\nLog output will state changes that would be applied, but they will not be.\n\nIf it is \"y\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\nBecause the EFUSE VIRT mode is for testing only.\n\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.", + "id": "EFUSE_VIRTUAL", + "name": "EFUSE_VIRTUAL", + "range": null, + "title": "Simulate eFuse operations in RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "range": null, + "title": "None Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "range": null, + "title": "3/4 and None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "range": null, + "title": "Repeat, 3/4 and None (common table does not support it)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "Selector eFuse code scheme.", + "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", + "name": "EFUSE_CODE_SCHEME_SELECTOR", + "title": "Coding Scheme Compatibility", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "EFUSE_MAX_BLK_LEN", + "name": "EFUSE_MAX_BLK_LEN", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-efuse-bit-manager", + "title": "eFuse Bit Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", + "id": "ESP_ERR_TO_NAME_LOOKUP", + "name": "ESP_ERR_TO_NAME_LOOKUP", + "range": null, + "title": "Enable lookup of error code strings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-common-esp-related", + "title": "Common ESP-related", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_0", + "name": "ESP32S3_REV_MIN_0", + "range": null, + "title": "Rev v0.0 (ECO0)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_1", + "name": "ESP32S3_REV_MIN_1", + "range": null, + "title": "Rev v0.1 (ECO1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_2", + "name": "ESP32S3_REV_MIN_2", + "range": null, + "title": "Rev v0.2 (ECO2)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Required minimum chip revision. ESP-IDF will check for it and\nreject to boot if the chip revision fails the check.\nThis ensures the chip used will have some modifications (features, or bugfixes).\n\nThe complied binary will only support chips above this revision,\nthis will also help to reduce binary size.", + "id": "component-config-hardware-settings-chip-revision-minimum-supported-esp32-s3-revision", + "name": "ESP32S3_REV_MIN", + "title": "Minimum Supported ESP32-S3 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_REV_MIN_FULL", + "name": "ESP32S3_REV_MIN_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MIN_FULL", + "name": "ESP_REV_MIN_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_REV_MAX_FULL", + "name": "ESP32S3_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MAX_FULL", + "name": "ESP_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", + "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "range": null, + "title": "Minimum Supported ESP32-S3 eFuse Block Revision", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_CI_BUILD", + "help": "For internal chip testing, a small number of new versions chips didn't\nupdate the version field in eFuse, you can enable this option to force the\nsoftware recognize the chip version based on the rev selected in menuconfig.", + "id": "ESP_REV_NEW_CHIP_TEST", + "name": "ESP_REV_NEW_CHIP_TEST", + "range": null, + "title": "Internal test mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-chip-revision", + "title": "Chip revision", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_BT", + "name": "ESP_MAC_ADDR_UNIVERSE_BT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_ETH", + "name": "ESP_MAC_ADDR_UNIVERSE_ETH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": "Four", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure the number of universally administered (by IEEE) MAC addresses.\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.\nIf the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap,\nBluetooth and Ethernet) receive a universally administered MAC address. These are generated\nsequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.\nIf the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)\nreceive a universally administered MAC address. These are generated sequentially by adding 0\nand 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethernet)\nreceive local MAC addresses. These are derived from the universal WiFi station and Bluetooth MAC\naddresses, respectively.\nWhen using the default (Espressif-assigned) base MAC address, either setting can be used. When using\na custom universal MAC address range, the correct setting will depend on the allocation of MAC\naddresses in this range (either 2 or 4 per device.)", + "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\nand you still want to use this chip, you can enable this option to bypass such an error.\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.", + "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "range": null, + "title": "Ignore MAC CRC error (not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", + "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "range": null, + "title": "Enable using custom mac as base mac", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-mac-config", + "title": "MAC Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", + "help": "If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\n\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.", + "id": "ESP_SLEEP_POWER_DOWN_FLASH", + "name": "ESP_SLEEP_POWER_DOWN_FLASH", + "range": null, + "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of SPI Flash is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in Flash may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of Flash to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of SPI Flash in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external SPI Flash CS pin pullups.)", + "id": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "name": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "range": null, + "title": "Pull-up Flash CS pin in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of PSRAM is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in PSRAM may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of PSRAM to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of PSRAM in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external PSRAM CS pin pullups.)", + "id": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", + "name": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", + "range": null, + "title": "Pull-up PSRAM CS pin in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "help": "To reduce leakage current, some types of SPI Flash/RAM only need to pull up the CS pin\nduring light sleep. But there are also some kinds of SPI Flash/RAM that need to pull up\nall pins. It depends on the SPI Flash/RAM chip used.", + "id": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", + "name": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", + "range": null, + "title": "Pull-up all SPI pins in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", + "name": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "esp32c2, esp32c3, esp32s3, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", + "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "range": null, + "title": "light sleep GPIO reset workaround", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS active) are usually named tVSL in ELECTRICAL CHARACTERISTICS chapter,\nand the configuration value here should be:\nESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY = tVSL - 900\n\nFor esp32 and esp32s3, the default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the console after deep sleep reset\non esp32, or triggered RTC_WDT/LP_WDT after lightsleep wakeup, try increasing this value.\n(For esp32, the delay will be executed in both deep sleep and light sleep wake up flow.\nFor chips after esp32, the delay will be executed only in light sleep flow, the delay\ncontrolled by the EFUSE_FLASH_TPUW in ROM will be executed in deepsleep wake up flow.)", + "id": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "name": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "range": [ + 0, + 5000 + ], + "title": "Extra delay (in us) after flash powerdown sleep wakeup to wait flash ready", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling it will check the cache safety of the code before the flash power is ready after\nlight sleep wakeup, and check PM_SLP_IRAM_OPT related code cache safety. This option is\nonly for code quality inspection. Enabling it will increase the time overhead of entering\nand exiting sleep. It is not recommended to enable it in the release version.", + "id": "ESP_SLEEP_CACHE_SAFE_ASSERTION", + "name": "ESP_SLEEP_CACHE_SAFE_ASSERTION", + "range": null, + "title": "Check the cache safety of the sleep wakeup code in sleep process", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable esp sleep debug.", + "id": "ESP_SLEEP_DEBUG", + "name": "ESP_SLEEP_DEBUG", + "range": null, + "title": "esp sleep debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\nmake use of the internal ones.", + "id": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", + "name": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", + "range": null, + "title": "Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, it allows user to register sleep event callbacks. It is primarily designed for internal\ndevelopers and customers can use PM_LIGHT_SLEEP_CALLBACKS as an alternative.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in\ncallback and hence it is highly recommended to keep them as short as possible.", + "id": "ESP_SLEEP_EVENT_CALLBACKS", + "name": "ESP_SLEEP_EVENT_CALLBACKS", + "range": null, + "title": "Enable registration of sleep event callbacks", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-sleep-config", + "title": "Sleep Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_RC", + "name": "RTC_CLK_SRC_INT_RC", + "range": null, + "title": "Internal 136 kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_CRYS", + "name": "RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32 kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32 kHz oscillator at 32K_XP pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_8MD256", + "name": "RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 17.5 MHz oscillator, divided by 256", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When the startup code initializes RTC_SLOW_CLK, it can perform\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\nby the calibration routine. Higher numbers increase calibration\nprecision, which may be important for applications which spend a lot of\ntime in deep sleep. Lower numbers reduce startup time.\n\nWhen this option is set to 0, clock calibration will not be performed at\nstartup, and approximate clock frequencies will be assumed:\n\n- 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", + "id": "RTC_CLK_CAL_CYCLES", + "name": "RTC_CLK_CAL_CYCLES", + "range": [ + 0, + 32766 + ], + "title": "Number of cycles for RTC_SLOW_CLK calibration", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-rtc-clock-config", + "title": "RTC Clock Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place peripheral control functions (e.g. periph_module_reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", + "name": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place peripheral control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place analog i2c master control functions (e.g. regi2c_ctrl_read_reg, regi2c_ctrl_write_reg) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", + "name": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place regi2c control functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-peripheral-control", + "title": "Peripheral Control", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ETM_SUPPORTED", + "help": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", + "id": "ETM_ENABLE_DEBUG_LOG", + "name": "ETM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ETM_SUPPORTED", + "id": "component-config-hardware-settings-etm-configuration", + "title": "ETM Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Place GDMA control functions (like start/stop/append/reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Place GDMA ISR handler functions in IRAM to reduce latency caused by cache miss.", + "id": "GDMA_ISR_HANDLER_IN_IRAM", + "name": "GDMA_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place GDMA ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "This will ensure the GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", + "id": "GDMA_OBJ_DRAM_SAFE", + "name": "GDMA_OBJ_DRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "If enabled, GDMA driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "GDMA_ENABLE_DEBUG_LOG", + "name": "GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).\nIf this option is enabled, ALL GDMA channel's ISR handlers should be placed in IRAM, which is a overkill.\nIt's recommend to set the \"isr_cache_safe\" in the \"gdma_channel_alloc_config_t\".\nThen other GDMA channels won't be influenced.", + "id": "GDMA_ISR_IRAM_SAFE", + "name": "GDMA_ISR_IRAM_SAFE", + "range": null, + "title": "GDMA ISR IRAM-Safe (Deprecated. Read Help!)", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-gdma-configurations", + "title": "GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", + "id": "DW_GDMA_ISR_IRAM_SAFE", + "name": "DW_GDMA_ISR_IRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", + "id": "DW_GDMA_OBJ_DRAM_SAFE", + "name": "DW_GDMA_OBJ_DRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", + "id": "DW_GDMA_ENABLE_DEBUG_LOG", + "name": "DW_GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-dw_gdma-configurations", + "title": "DW_GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", + "id": "DMA2D_OPERATION_FUNC_IN_IRAM", + "name": "DMA2D_OPERATION_FUNC_IN_IRAM", + "range": null, + "title": "Place 2D-DMA operation functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "This will ensure the 2D-DMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", + "id": "DMA2D_ISR_IRAM_SAFE", + "name": "DMA2D_ISR_IRAM_SAFE", + "range": null, + "title": "2D-DMA ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_DMA2D_SUPPORTED", + "id": "component-config-hardware-settings-2d-dma-configurations", + "title": "2D-DMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "name": "XTAL_FREQ", + "title": "Main XTAL frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "XTAL_FREQ", + "name": "XTAL_FREQ", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-main-xtal-config", + "title": "Main XTAL Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.44V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_6", + "name": "ESP_BROWNOUT_DET_LVL_SEL_6", + "range": null, + "title": "2.56V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_5", + "name": "ESP_BROWNOUT_DET_LVL_SEL_5", + "range": null, + "title": "2.67V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_4", + "name": "ESP_BROWNOUT_DET_LVL_SEL_4", + "range": null, + "title": "2.84V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_3", + "name": "ESP_BROWNOUT_DET_LVL_SEL_3", + "range": null, + "title": "2.98V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "3.19V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "3.30V", + "type": "bool" + } + ], + "depends_on": "ESP_BROWNOUT_DET", + "help": "The brownout detector will reset the chip when the supply voltage is approximately\nbelow this level. Note that there may be some variation of brownout voltage level\nbetween each ESP3-S3 chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", + "id": "component-config-hardware-settings-power-supplier-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level", + "name": "ESP_BROWNOUT_DET_LVL_SEL", + "title": "Brownout voltage level", + "type": "choice" + } + ], + "depends_on": "!IDF_ENV_FPGA", + "help": "The ESP32-S3 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", + "id": "ESP_BROWNOUT_DET", + "name": "ESP_BROWNOUT_DET", + "range": null, + "title": "Hardware brownout detect & reset", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_BROWNOUT_DET_LVL", + "name": "ESP_BROWNOUT_DET_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This config allows to trigger an interrupt when brownout detected. Software restart will be done\nat the end of the default callback.\nThis is because for some special workflow, the chip needs do more things when brownout happens\nbefore restart instead of restarting directly. This part needs to be done in callback function\nof interrupt.", + "id": "ESP_BROWNOUT_USE_INTR", + "name": "ESP_BROWNOUT_USE_INTR", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier-brownout-detector", + "title": "Brownout Detector", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier", + "title": "Power Supplier", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", + "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", + "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", + "id": "ESP_CLK_RC32K_NOT_TO_USE", + "name": "ESP_CLK_RC32K_NOT_TO_USE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PMU_PVT_SUPPORTED", + "help": "If enabled, hp & lp voltage can be auto adjust by PVT characteristic.\nOtherwise, internal voltage will be set to fix dbias.\nThis is a must for stable mass production. Disable for debugging only.", + "id": "ESP_ENABLE_PVT", + "name": "ESP_ENABLE_PVT", + "range": null, + "title": "Auto adjust hp & lp voltage using pvt function (MUST ENABLE FOR MP)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_INTR_IN_IRAM", + "name": "ESP_INTR_IN_IRAM", + "range": null, + "title": "Place esp_intr_alloc functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_PRINT_IN_IRAM", + "name": "ESP_ROM_PRINT_IN_IRAM", + "range": null, + "title": "Place print functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-rom", + "title": "ESP-ROM", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "range": null, + "title": "Security level low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "range": null, + "title": "Security level medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "range": null, + "title": "Security level high", + "type": "bool" + } + ], + "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "Configure the DPA protection security level", + "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "title": "DPA protection level", + "type": "choice" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\nclock frequency of the crypto peripheral. DPA protection helps to make it\ndifficult to perform SCA attacks on the crypto peripherals. However,\nthere is also associated performance impact based on the security level\nset. Please refer to the TRM for more details.", + "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "range": null, + "title": "Enable crypto DPA protection at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "id": "component-config-esp-security-specific-crypto-dpa-protection", + "title": "Crypto DPA Protection", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", + "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.", + "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "range": null, + "title": "Forcefully enable ECC constant time point multiplication operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", + "help": "By default, only the 256-bit curve operations are allowed. If this configuration is enabled,\nit will set the eFuse to allow ECDSA operations using both the 192-bit and 256-bit curves.", + "id": "ESP_ECDSA_ENABLE_P192_CURVE", + "name": "ESP_ECDSA_ENABLE_P192_CURVE", + "range": null, + "title": "Enable ECDSA 192-curve operations", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-security-specific", + "title": "ESP Security Specific", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_ENV_FPGA && ", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_160", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_160", + "range": null, + "title": "160 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_240", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_240", + "range": null, + "title": "240 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "CPU frequency to be set on application startup.", + "id": "component-config-esp-system-settings-cpu-frequency", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ", + "title": "CPU frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_16KB", + "name": "ESP32S3_INSTRUCTION_CACHE_16KB", + "range": null, + "title": "16KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_32KB", + "name": "ESP32S3_INSTRUCTION_CACHE_32KB", + "range": null, + "title": "32KB", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache size to be set on application startup.\nIf you use 16KB instruction cache rather than 32KB instruction cache,\nthen the other 16KB will be managed by heap allocator.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-size", + "name": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "title": "Instruction cache size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "name": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_4WAYS", + "name": "ESP32S3_INSTRUCTION_CACHE_4WAYS", + "range": null, + "title": "4 ways", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_8WAYS", + "name": "ESP32S3_INSTRUCTION_CACHE_8WAYS", + "range": null, + "title": "8 ways", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache associated ways to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-associated-ways", + "name": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "title": "Instruction cache associated ways", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "name": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_INSTRUCTION_CACHE_16KB && ", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "range": null, + "title": "16 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "range": null, + "title": "32 Bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache line size to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-line-size", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "title": "Instruction cache line size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!SPIRAM_ECC_ENABLE", + "help": "If enabled, instruction cache will use wrap mode to read spi flash or spi ram.\nThe wrap length equals to ESP32S3_INSTRUCTION_CACHE_LINE_SIZE.\nHowever, it depends on complex conditions.", + "id": "ESP32S3_INSTRUCTION_CACHE_WRAP", + "name": "ESP32S3_INSTRUCTION_CACHE_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_16KB", + "name": "ESP32S3_DATA_CACHE_16KB", + "range": null, + "title": "16KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_32KB", + "name": "ESP32S3_DATA_CACHE_32KB", + "range": null, + "title": "32KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_64KB", + "name": "ESP32S3_DATA_CACHE_64KB", + "range": null, + "title": "64KB", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache size to be set on application startup.\nIf you use 32KB data cache rather than 64KB data cache,\nthe other 32KB will be added to the heap.", + "id": "component-config-esp-system-settings-cache-config-data-cache-size", + "name": "ESP32S3_DATA_CACHE_SIZE", + "title": "Data cache size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DATA_CACHE_SIZE", + "name": "ESP32S3_DATA_CACHE_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_4WAYS", + "name": "ESP32S3_DATA_CACHE_4WAYS", + "range": null, + "title": "4 ways", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_8WAYS", + "name": "ESP32S3_DATA_CACHE_8WAYS", + "range": null, + "title": "8 ways", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache associated ways to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-data-cache-associated-ways", + "name": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "title": "Data cache associated ways", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "name": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "(ESP32S3_DATA_CACHE_16KB || ESP32S3_DATA_CACHE_32KB) && ", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_16B", + "name": "ESP32S3_DATA_CACHE_LINE_16B", + "range": null, + "title": "16 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_32B", + "name": "ESP32S3_DATA_CACHE_LINE_32B", + "range": null, + "title": "32 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_64B", + "name": "ESP32S3_DATA_CACHE_LINE_64B", + "range": null, + "title": "64 Bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache line size to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-data-cache-line-size", + "name": "ESP32S3_DATA_CACHE_LINE_SIZE", + "title": "Data cache line size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_SIZE", + "name": "ESP32S3_DATA_CACHE_LINE_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!SPIRAM_ECC_ENABLE", + "help": "If enabled, data cache will use wrap mode to read spi flash or spi ram.\nThe wrap length equals to ESP32S3_DATA_CACHE_LINE_SIZE.\nHowever, it depends on complex conditions.", + "id": "ESP32S3_DATA_CACHE_WRAP", + "name": "ESP32S3_DATA_CACHE_WRAP", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-cache-config", + "title": "Cache config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This option allows to place .rtc_data and .rtc_rodata sections into\nRTC fast memory segment to free the slow memory region for ULP programs.", + "id": "ESP32S3_RTCDATA_IN_FAST_MEM", + "name": "ESP32S3_RTCDATA_IN_FAST_MEM", + "range": null, + "title": "Place RTC_DATA_ATTR and RTC_RODATA_ATTR variables into RTC fast memory segment", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nThis value is less than the chips total memory, as not all of it can be used for this purpose.\nE.g. parts are used by the software bootloader, and will only be available\nas heap memory after app startup.", + "id": "ESP32S3_FIXED_STATIC_RAM_SIZE", + "name": "ESP32S3_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Fixed Static RAM size", + "type": "hex" + } + ], + "depends_on": null, + "help": "If this option is disabled, the DRAM part of the heap starts right after the .bss section,\nwithin the dram0_0 region. As a result, adding or removing some static variables\nwill change the available heap size.\n\nIf this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,\nwhere its length is set with ESP32S3_FIXED_STATIC_RAM_SIZE", + "id": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory", + "title": "Memory", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_MEMMAP_TRACEMEM", + "name": "ESP32S3_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32S3_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_TRAX && !ESP_SYSTEM_SINGLE_CORE_MODE", + "help": "The esp32-s3 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32S3_TRAX_TWOBANKS", + "name": "ESP32S3_TRAX_TWOBANKS", + "range": null, + "title": "Reserve memory for tracing both pro as well as app cpu execution", + "type": "bool" + } + ], + "depends_on": null, + "help": "The esp32-s3 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32S3_TRAX", + "name": "ESP32S3_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_TRACEMEM_RESERVE_DRAM", + "name": "ESP32S3_TRACEMEM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-trace-memory", + "title": "Trace memory", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "The following system functions will be placed in IRAM if this option is enabled:\n- system startup\n- system time\n- system error\n- system restart\n- system crosscore\n- system debug\n- system APB backup DMA lock\n- system application tick hook\n- Unified Behavior Sanitizer (UBSAN) hook\n- Interrupt watchdog handler\n- XTAL32K watchdog timer\n- USB CDC functions for the esp_rom_printf (if ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF=y)\n- IPC and IPC ISR", + "id": "ESP_SYSTEM_IN_IRAM", + "name": "ESP_SYSTEM_IN_IRAM", + "range": null, + "title": "Place system functions in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", + "id": "ESP_SYSTEM_PANIC_PRINT_HALT", + "name": "ESP_SYSTEM_PANIC_PRINT_HALT", + "range": null, + "title": "Print registers and halt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", + "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "range": null, + "title": "Print registers and reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Just resets the processor without outputting anything", + "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "range": null, + "title": "Silent reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_GDBSTUB_ENABLED && ", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", + "id": "ESP_SYSTEM_PANIC_GDBSTUB", + "name": "ESP_SYSTEM_PANIC_GDBSTUB", + "range": null, + "title": "GDBStub on panic", + "type": "bool" + } + ], + "depends_on": null, + "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", + "id": "component-config-esp-system-settings-panic-handler-behaviour", + "name": "ESP_SYSTEM_PANIC", + "title": "Panic handler behaviour", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", + "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "range": [ + 0, + 99 + ], + "title": "Panic reboot delay (Seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Only initialize and use the main core.", + "id": "ESP_SYSTEM_SINGLE_CORE_MODE", + "name": "ESP_SYSTEM_SINGLE_CORE_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_XTAL", + "name": "ESP_SYSTEM_RTC_EXT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_OSC", + "name": "ESP_SYSTEM_RTC_EXT_OSC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", + "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", + "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "range": null, + "title": "Bootstrap cycles for external 32kHz crystal", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": null, + "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "help": "This config option allows to add RTC fast memory region to system heap with capability\nsimilar to that of DRAM region but without DMA. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", + "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "range": null, + "title": "Enable RTC fast memory for dynamic allocations", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "When selected, no backtracing will be performed at runtime. By using idf.py monitor, it\nis still possible to get a backtrace when a panic occurs.", + "id": "ESP_SYSTEM_NO_BACKTRACE", + "name": "ESP_SYSTEM_NO_BACKTRACE", + "range": null, + "title": "No backtracing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Generate DWARF information for each function of the project. These information will parsed and used to\nperform backtracing when panics occur. Activating this option will activate asynchronous frame\nunwinding and generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary\nsize (20% to 100% larger). The main purpose of this option is to be able to have a backtrace parsed\nand printed by the program itself, regardless of the serial monitor used.\nThis option is not recommended to be used for production.", + "id": "ESP_SYSTEM_USE_EH_FRAME", + "name": "ESP_SYSTEM_USE_EH_FRAME", + "range": null, + "title": "Generate and use eh_frame for backtracing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This configuration allows the compiler to allocate CPU register s0 as the frame pointer. The main usage\nof the frame pointer is to be able to generate a backtrace from the panic handler on exception.\nEnabling this option results in bigger and slightly slower code since all functions will have\nto populate this register and won't be able to use it as a general-purpose register anymore.", + "id": "ESP_SYSTEM_USE_FRAME_POINTER", + "name": "ESP_SYSTEM_USE_FRAME_POINTER", + "range": null, + "title": "Use CPU Frame Pointer register", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Configure how backtracing will be performed at runtime when a panic occurs.", + "id": "component-config-esp-system-settings-backtracing-method", + "name": "ESP_BACKTRACING_METHOD", + "title": "Backtracing method", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", + "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", + "id": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "range": null, + "title": "Make LP core reserved memory executable from HP core", + "type": "bool" + } + ], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP && !SECURE_ENABLE_TEE", + "help": "If enabled, the CPU watches all the memory access and raises an exception in case\nof any memory violation. This feature automatically splits\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", + "id": "ESP_SYSTEM_PMP_IDRAM_SPLIT", + "name": "ESP_SYSTEM_PMP_IDRAM_SPLIT", + "range": null, + "title": "Enable IRAM/DRAM split protection", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE", + "help": "This option enables the default memory protection provided by TEE.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", + "name": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", + "range": null, + "title": "Enable memory protection (via TEE)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_SYSTEM_MEMPROT_FEATURE", + "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", + "name": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", + "range": null, + "title": "Lock memory protection settings", + "type": "bool" + } + ], + "depends_on": "SOC_MEMPROT_SUPPORTED", + "help": "If enabled, the permission control module watches all the memory access and fires the panic handler\nif a permission violation is detected. This feature automatically splits\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE", + "name": "ESP_SYSTEM_MEMPROT_FEATURE", + "range": null, + "title": "Enable memory protection", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-protection", + "title": "Memory protection", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event queue size in different application.", + "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "range": null, + "title": "System event queue size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event task stack size in different application.", + "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "range": null, + "title": "Event loop task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the \"main task\" stack size. This is the stack of the task\nwhich calls app_main(). If app_main() returns then this task is deleted\nand its stack memory is freed.", + "id": "ESP_MAIN_TASK_STACK_SIZE", + "name": "ESP_MAIN_TASK_STACK_SIZE", + "range": null, + "title": "Main task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_CPU0", + "name": "ESP_MAIN_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_CPU1", + "name": "ESP_MAIN_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", + "name": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure the \"main task\" core affinity. This is the used core of the task\nwhich calls app_main(). If app_main() returns then this task is deleted.", + "id": "component-config-esp-system-settings-main-task-core-affinity", + "name": "ESP_MAIN_TASK_AFFINITY", + "title": "Main task core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY", + "name": "ESP_MAIN_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", + "id": "ESP_MINIMAL_SHARED_STACK_SIZE", + "name": "ESP_MINIMAL_SHARED_STACK_SIZE", + "range": null, + "title": "Minimal allowed size for shared stack", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_DEFAULT", + "name": "ESP_CONSOLE_UART_DEFAULT", + "range": null, + "title": "Default: UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && ", + "help": null, + "id": "ESP_CONSOLE_USB_CDC", + "name": "ESP_CONSOLE_USB_CDC", + "range": null, + "title": "USB CDC", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED && ", + "help": null, + "id": "ESP_CONSOLE_USB_SERIAL_JTAG", + "name": "ESP_CONSOLE_USB_SERIAL_JTAG", + "range": null, + "title": "USB Serial/JTAG Controller", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM", + "name": "ESP_CONSOLE_UART_CUSTOM", + "range": null, + "title": "Custom UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_NONE", + "name": "ESP_CONSOLE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select where to send console output (through stdout and stderr).\n\n- Default is to use UART0 on pre-defined GPIOs.\n- If \"Custom\" is selected, UART0 or UART1 can be chosen,\n and any pins can be selected.\n- If \"None\" is selected, there will be no console output on any UART, except\n for initial output from ROM bootloader. This ROM output can be suppressed by\n GPIO strapping or EFUSE, refer to chip datasheet for details.\n- On chips with USB OTG peripheral, \"USB CDC\" option redirects output to the\n CDC port. This option uses the CDC driver in the chip ROM.\n This option is incompatible with TinyUSB stack.\n- On chips with an USB serial/JTAG debug controller, selecting the option\n for that redirects output to the CDC/ACM (serial port emulation) component\n of that device.", + "id": "component-config-esp-system-settings-channel-for-console-output", + "name": "ESP_CONSOLE_UART", + "title": "Channel for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_SECONDARY_NONE", + "name": "ESP_CONSOLE_SECONDARY_NONE", + "range": null, + "title": "No secondary console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_CONSOLE_USB_SERIAL_JTAG && ", + "help": "This option supports output through USB_SERIAL_JTAG port when the UART0 port is not connected.\nThe output currently only supports non-blocking mode without using the console.\nIf you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,\nplease change the primary config to ESP_CONSOLE_USB_SERIAL_JTAG above.", + "id": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "name": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "range": null, + "title": "USB_SERIAL_JTAG PORT", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "help": "This secondary option supports output through other specific port like USB_SERIAL_JTAG\nwhen UART0 port as a primary is selected but not connected. This secondary output currently only supports\nnon-blocking mode without using REPL. If you want to output in blocking mode with REPL or\ninput through this secondary port, please change the primary config to this port\nin `Channel for console output` menu.", + "id": "component-config-esp-system-settings-channel-for-console-secondary-output", + "name": "ESP_CONSOLE_SECONDARY", + "title": "Channel for console secondary output", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", + "name": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART", + "name": "ESP_CONSOLE_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "range": null, + "title": "UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "range": null, + "title": "UART1", + "type": "bool" + } + ], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This UART peripheral is used for console output from the ESP-IDF Bootloader and the app.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.\n\nDue to an ESP32 ROM bug, UART2 is not supported for console output\nvia esp_rom_printf.", + "id": "component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-", + "name": "ESP_CONSOLE_UART_NUM", + "title": "UART peripheral to use for console output (0-1)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART_NUM", + "name": "ESP_CONSOLE_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\nboot log output and default standard output and standard error of the app). Value -1 means to\ncontinue using the default console UART TX pin.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_TX_GPIO", + "name": "ESP_CONSOLE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_RX_GPIO", + "name": "ESP_CONSOLE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART", + "help": "This baud rate is used by both the ESP-IDF Bootloader and the app (including\nboot log output and default standard input/output/error of the app).\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_BAUDRATE", + "name": "ESP_CONSOLE_UART_BAUDRATE", + "range": [ + 1200, + 4000000 + ], + "title": "UART console baud rate", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", + "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "range": null, + "title": "Size of USB CDC RX buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\nDisabling this option saves about 1kB or RAM.", + "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "range": null, + "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_INT_WDT", + "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", + "id": "ESP_INT_WDT_TIMEOUT_MS", + "name": "ESP_INT_WDT_TIMEOUT_MS", + "range": [ + 10, + 10000 + ], + "title": "Interrupt watchdog timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", + "help": "Also detect if interrupts on CPU 1 are disabled for too long.", + "id": "ESP_INT_WDT_CHECK_CPU1", + "name": "ESP_INT_WDT_CHECK_CPU1", + "range": null, + "title": "Also watch CPU1 tick interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", + "id": "ESP_INT_WDT", + "name": "ESP_INT_WDT", + "range": null, + "title": "Interrupt watchdog", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_EN", + "help": null, + "id": "ESP_TASK_WDT_USE_ESP_TIMER", + "name": "ESP_TASK_WDT_USE_ESP_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_PANIC", + "name": "ESP_TASK_WDT_PANIC", + "range": null, + "title": "Invoke panic handler on Task Watchdog timeout", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_TIMEOUT_S", + "name": "ESP_TASK_WDT_TIMEOUT_S", + "range": [ + 1, + 60 + ], + "title": "Task Watchdog timeout period (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "range": null, + "title": "Watch CPU0 Idle Task", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", + "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "range": null, + "title": "Watch CPU1 Idle Task", + "type": "bool" + } + ], + "depends_on": "ESP_TASK_WDT_EN", + "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", + "id": "ESP_TASK_WDT_INIT", + "name": "ESP_TASK_WDT_INIT", + "range": null, + "title": "Initialize Task Watchdog Timer on startup", + "type": "bool" + } + ], + "depends_on": null, + "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\neither initialized automatically at startup or initialized after startup\n(see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_EN", + "name": "ESP_TASK_WDT_EN", + "range": null, + "title": "Enable Task Watchdog Timer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", + "id": "ESP_XT_WDT_TIMEOUT", + "name": "ESP_XT_WDT_TIMEOUT", + "range": null, + "title": "XTAL32K watchdog timeout period", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", + "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "range": null, + "title": "Automatically switch to BACKUP32K_CLK when timer expires", + "type": "bool" + } + ], + "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", + "help": "This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\nan interrupt.", + "id": "ESP_XT_WDT", + "name": "ESP_XT_WDT", + "range": null, + "title": "Initialize XTAL32K watchdog timer on startup", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code (including required UART functions) is placed\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\nis triggered.", + "id": "ESP_PANIC_HANDLER_IRAM", + "name": "ESP_PANIC_HANDLER_IRAM", + "range": null, + "title": "Place panic handler code in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", + "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", + "id": "ESP_DEBUG_STUBS_ENABLE", + "name": "ESP_DEBUG_STUBS_ENABLE", + "range": null, + "title": "OpenOCD debug stubs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", + "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "range": null, + "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The FreeRTOS panic and unhandled exception handlers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", + "id": "ESP_DEBUG_OCDAWARE", + "name": "ESP_DEBUG_OCDAWARE", + "range": null, + "title": "Make exception and panic handlers JTAG/OCD aware", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ", + "help": "Using level 5 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "ESP_SYSTEM_CHECK_INT_LEVEL_5", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL_5", + "range": null, + "title": "Level 5 interrupt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BTDM_CTRL_HLI && ", + "help": "Using level 4 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "ESP_SYSTEM_CHECK_INT_LEVEL_4", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL_4", + "range": null, + "title": "Level 4 interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "Interrupt level to use for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL", + "title": "Interrupt level to use for Interrupt Watchdog and other system checks", + "type": "choice" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED && !SECURE_ENABLE_TEE", + "help": "This config allows to trigger a panic interrupt when Stack Pointer register goes out of allocated stack\nmemory bounds.", + "id": "ESP_SYSTEM_HW_STACK_GUARD", + "name": "ESP_SYSTEM_HW_STACK_GUARD", + "range": null, + "title": "Hardware stack guard", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", + "help": "This configuration helps to address an BBPLL inaccurate issue when boot from certain bootloader version,\nwhich may increase about the boot-up time by about 200 us. Disable this when your bootloader is built with\nESP-IDF version v5.2 and above.", + "id": "ESP_SYSTEM_BBPLL_RECALIB", + "name": "ESP_SYSTEM_BBPLL_RECALIB", + "range": null, + "title": "Re-calibration BBPLL at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", + "id": "ESP_SYSTEM_HW_PC_RECORD", + "name": "ESP_SYSTEM_HW_PC_RECORD", + "range": null, + "title": "Hardware PC recording", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP_SYSTEM_SINGLE_CORE_MODE || APPTRACE_GCOV_ENABLE", + "help": null, + "id": "ESP_IPC_ENABLE", + "name": "ESP_IPC_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the IPC tasks stack size. An IPC task runs on each core (in dual core mode), and allows for\ncross-core function calls. See IPC documentation for more details. The default IPC stack size should be\nenough for most common simple use cases. However, users can increase/decrease the stack size to their\nneeds.", + "id": "ESP_IPC_TASK_STACK_SIZE", + "name": "ESP_IPC_TASK_STACK_SIZE", + "range": [ + 512, + 65536 + ], + "title": "Inter-Processor Call (IPC) task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_IPC_ENABLE", + "help": "If this option is not enabled then the IPC task will keep behavior same as prior to that of ESP-IDF v4.0,\nhence IPC task will run at (configMAX_PRIORITIES - 1) priority.", + "id": "ESP_IPC_USES_CALLERS_PRIORITY", + "name": "ESP_IPC_USES_CALLERS_PRIORITY", + "range": null, + "title": "IPC runs at caller's priority", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The IPC ISR feature is similar to the IPC feature except that the callback function is executed in the\ncontext of a High Priority Interrupt. The IPC ISR feature is intended for low latency execution of simple\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\ncallbacks must be written with particular restrictions (see \"IPC\" and \"High-Level Interrupt\" docs for more\ndetails).", + "id": "ESP_IPC_ISR_ENABLE", + "name": "ESP_IPC_ISR_ENABLE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-ipc-inter-processor-call-", + "title": "IPC (Inter-Processor Call)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32P4", + "help": "Amazon has released an SMP version of the FreeRTOS Kernel which can be found via the following link:\nhttps://github.com/FreeRTOS/FreeRTOS-Kernel/tree/smp\n\nIDF has added an experimental port of this SMP kernel located in\ncomponents/freertos/FreeRTOS-Kernel-SMP. Enabling this option will cause IDF to use the Amazon SMP\nkernel. Note that THIS FEATURE IS UNDER ACTIVE DEVELOPMENT, users use this at their own risk.\n\nLeaving this option disabled will mean the IDF FreeRTOS kernel is used instead, which is located in:\ncomponents/freertos/FreeRTOS-Kernel. Both kernel versions are SMP capable, but differ in\ntheir implementation and features.", + "id": "FREERTOS_SMP", + "name": "FREERTOS_SMP", + "range": null, + "title": "Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This version of FreeRTOS normally takes control of all cores of the CPU. Select this if you only want\nto start it on the first core. This is needed when e.g. another process needs complete control over the\nsecond core.", + "id": "FREERTOS_UNICORE", + "name": "FREERTOS_UNICORE", + "range": null, + "title": "Run FreeRTOS only on first core", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\ndetails).", + "id": "FREERTOS_HZ", + "name": "FREERTOS_HZ", + "range": [ + 1, + 1000 + ], + "title": "configTICK_RATE_HZ", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE && !FREERTOS_SMP", + "help": "Enables port specific task selection method. This option can speed up the search of ready tasks\nwhen scheduling (see configUSE_PORT_OPTIMISED_TASK_SELECTION documentation for more details).", + "id": "FREERTOS_OPTIMIZED_SCHEDULER", + "name": "FREERTOS_OPTIMIZED_SCHEDULER", + "range": null, + "title": "configUSE_PORT_OPTIMISED_TASK_SELECTION", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "range": null, + "title": "No checking", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Check for stack overflows on each context switch by checking if the stack pointer is in a valid\nrange. Quick but does not detect stack overflows that happened between context switches\n(configCHECK_FOR_STACK_OVERFLOW = 1)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "range": null, + "title": "Check by stack pointer value (Method 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places some magic bytes at the end of the stack area and on each context switch, check if these\nbytes are still intact. More thorough than just checking the pointer, but also slightly slower.\n(configCHECK_FOR_STACK_OVERFLOW = 2)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "range": null, + "title": "Check using canary bytes (Method 2)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables FreeRTOS to check for stack overflows (see configCHECK_FOR_STACK_OVERFLOW documentation for\nmore details).\n\nNote: If users do not provide their own ``vApplicationStackOverflowHook()`` function, a default\nfunction will be provided by ESP-IDF.", + "id": "component-config-freertos-kernel-configcheck_for_stack_overflow", + "name": "FREERTOS_CHECK_STACKOVERFLOW", + "title": "configCHECK_FOR_STACK_OVERFLOW", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of thread local storage pointers in each task (see\nconfigNUM_THREAD_LOCAL_STORAGE_POINTERS documentation for more details).\n\nNote: In ESP-IDF, this value must be at least 1. Index 0 is reserved for use by the pthreads API\nthread-local-storage. Other indexes can be used for any desired purpose.", + "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "range": [ + 1, + 256 + ], + "title": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the idle task stack size in bytes (see configMINIMAL_STACK_SIZE documentation for more details).\n\nNote:\n\n- ESP-IDF specifies stack sizes in bytes instead of words.\n- The default size is enough for most use cases.\n- The stack size may need to be increased above the default if the app installs idle or thread local\n storage cleanup hooks that use a lot of stack memory.\n- Conversely, the stack size can be reduced to the minimum if non of the idle features are used.", + "id": "FREERTOS_IDLE_TASK_STACKSIZE", + "name": "FREERTOS_IDLE_TASK_STACKSIZE", + "range": [ + 768, + 32768 + ], + "title": "configMINIMAL_STACK_SIZE (Idle task stack size)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the idle task application hook (see configUSE_IDLE_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationIdleHook( void );``\n- ``vApplicationIdleHook()`` is called from FreeRTOS idle task(s)\n- The FreeRTOS idle hook is NOT the same as the ESP-IDF Idle Hook, but both can be enabled\n simultaneously.", + "id": "FREERTOS_USE_IDLE_HOOK", + "name": "FREERTOS_USE_IDLE_HOOK", + "range": null, + "title": "configUSE_IDLE_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SMP", + "help": "Enables the minimal idle task application hook (see configUSE_IDLE_HOOK documentation for more\ndetails).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "range": null, + "title": "Use FreeRTOS minimal idle hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationTickHook( void );``\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\n simultaneously.", + "id": "FREERTOS_USE_TICK_HOOK", + "name": "FREERTOS_USE_TICK_HOOK", + "range": null, + "title": "configUSE_TICK_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\nmore details).\n\nNote: For most uses, the default of 16 characters is sufficient.", + "id": "FREERTOS_MAX_TASK_NAME_LEN", + "name": "FREERTOS_MAX_TASK_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "configMAX_TASK_NAME_LEN", + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX", + "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", + "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "range": null, + "title": "configENABLE_BACKWARD_COMPATIBILITY", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", + "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "range": null, + "title": "configTIMER_SERVICE_TASK_NAME", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", + "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", + "type": "choice" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": null, + "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", + "id": "FREERTOS_TIMER_TASK_PRIORITY", + "name": "FREERTOS_TIMER_TASK_PRIORITY", + "range": [ + 1, + 25 + ], + "title": "configTIMER_TASK_PRIORITY", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", + "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "range": [ + 1536, + 32768 + ], + "title": "configTIMER_TASK_STACK_DEPTH", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", + "id": "FREERTOS_TIMER_QUEUE_LENGTH", + "name": "FREERTOS_TIMER_QUEUE_LENGTH", + "range": [ + 5, + 20 + ], + "title": "configTIMER_QUEUE_LENGTH", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", + "id": "FREERTOS_USE_TIMERS", + "name": "FREERTOS_USE_TIMERS", + "range": null, + "title": "configUSE_TIMERS", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\n\nNote: A value of 0 will disable queue registry functionality", + "id": "FREERTOS_QUEUE_REGISTRY_SIZE", + "name": "FREERTOS_QUEUE_REGISTRY_SIZE", + "range": [ + 0, + 20 + ], + "title": "configQUEUE_REGISTRY_SIZE", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the size of the task notification array of each task. When increasing this value, keep in\nmind that this means additional memory for each and every task on the system.\nHowever, task notifications in general are more light weight compared to alternatives\nsuch as semaphores.", + "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "range": [ + 1, + 32 + ], + "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TRACE_FACILITY", + "help": "Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).", + "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "range": null, + "title": "configUSE_STATS_FORMATTING_FUNCTIONS", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", + "id": "FREERTOS_USE_TRACE_FACILITY", + "name": "FREERTOS_USE_TRACE_FACILITY", + "range": null, + "title": "configUSE_TRACE_FACILITY", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", + "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "range": null, + "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "help": "If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\nis pinned to (0,1) or -1 if not pinned.", + "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "range": null, + "title": "Enable display of xCoreID in vTaskList", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "range": null, + "title": "uint32_t", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "range": null, + "title": "uint64_t", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS && !FREERTOS_SMP", + "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", + "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", + "title": "configRUN_TIME_COUNTER_TYPE", + "type": "choice" + } + ], + "depends_on": null, + "help": "Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\ndocumentation for more details).\n\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.", + "id": "FREERTOS_GENERATE_RUN_TIME_STATS", + "name": "FREERTOS_GENERATE_RUN_TIME_STATS", + "range": null, + "title": "configGENERATE_RUN_TIME_STATS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\nthis value to improve scheduling efficiency", + "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "range": null, + "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", + "type": "int" + } + ], + "depends_on": "PM_ENABLE", + "help": "If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\nwhen no tasks need to run for a number of ticks. This number can be set using\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\n\"skip_unhandled_events\" option as true.\n\nIf disabled, automatic light sleep support will be disabled.", + "id": "FREERTOS_USE_TICKLESS_IDLE", + "name": "FREERTOS_USE_TICKLESS_IDLE", + "range": null, + "title": "configUSE_TICKLESS_IDLE", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", + "id": "FREERTOS_USE_APPLICATION_TASK_TAG", + "name": "FREERTOS_USE_APPLICATION_TASK_TAG", + "range": null, + "title": "configUSE_APPLICATION_TASK_TAG", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-kernel", + "title": "Kernel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", + "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\nwrapper function will then log an error and abort the application. This option is also required for GDB\nbacktraces and C++ exceptions to work correctly inside top-level task functions.", + "id": "FREERTOS_TASK_FUNCTION_WRAPPER", + "name": "FREERTOS_TASK_FUNCTION_WRAPPER", + "range": null, + "title": "Wrap task functions", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\nless because the last one is overwritten as soon as a task switch happens.\n\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\nthe size for the stack watchpoint in IDF is 32 bytes.\n\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\ncheck methods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\nesp-idf will panic on an unhandled debug exception.", + "id": "FREERTOS_WATCHPOINT_END_OF_STACK", + "name": "FREERTOS_WATCHPOINT_END_OF_STACK", + "range": null, + "title": "Enable stack overflow debug watchpoint", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", + "help": "ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\noff to save space in the TCB memory.", + "id": "FREERTOS_TLSP_DELETION_CALLBACKS", + "name": "FREERTOS_TLSP_DELETION_CALLBACKS", + "range": null, + "title": "Enable thread local storage pointers deletion callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", + "id": "FREERTOS_TASK_PRE_DELETION_HOOK", + "name": "FREERTOS_TASK_PRE_DELETION_HOOK", + "range": null, + "title": "Enable task pre-deletion hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook (DEPRECATED)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP", + "help": "If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\nwhich is currently holding the mutex.", + "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "range": null, + "title": "Check that mutex semaphore is given by owner task", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\nhas its own stack, so the total size occupied will be twice this.", + "id": "FREERTOS_ISR_STACKSIZE", + "name": "FREERTOS_ISR_STACKSIZE", + "range": [ + 1536, + 32768 + ], + "title": "ISR stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, interrupt stack frame will be modified to point to the code of the\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\nto the interrupt dispatching code.", + "id": "FREERTOS_INTERRUPT_BACKTRACE", + "name": "FREERTOS_INTERRUPT_BACKTRACE", + "range": null, + "title": "Enable backtrace from interrupt to task context", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", + "help": "When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\nhigher level interrupts is still not permitted.", + "id": "FREERTOS_FPU_IN_ISR", + "name": "FREERTOS_FPU_IN_ISR", + "range": null, + "title": "Use float in Level 1 ISR", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_CORETIMER", + "name": "FREERTOS_TICK_SUPPORT_CORETIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 0", + "id": "FREERTOS_CORETIMER_0", + "name": "FREERTOS_CORETIMER_0", + "range": null, + "title": "Timer 0 (int 6, level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 1", + "id": "FREERTOS_CORETIMER_1", + "name": "FREERTOS_CORETIMER_1", + "range": null, + "title": "Timer 1 (int 15, level 3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 1 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "range": null, + "title": "SYSTIMER 0 (level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 3 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "range": null, + "title": "SYSTIMER 0 (level 3)", + "type": "bool" + } + ], + "depends_on": null, + "help": "FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\nthis, with different interrupt priorities.", + "id": "component-config-freertos-port-tick-timer-source-xtensa-only-", + "name": "FREERTOS_CORETIMER", + "title": "Tick timer source (Xtensa Only)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_SYSTIMER", + "name": "FREERTOS_SYSTICK_USES_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_CCOUNT", + "name": "FREERTOS_SYSTICK_USES_CCOUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "range": null, + "title": "Use ESP TIMER for run time stats", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", + "help": "CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "range": null, + "title": "Use CPU Clock for run time stats", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\nsource overflows.", + "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "help": "When enabled additional FreeRTOS functions which maybe called from an ISR context are\nalso placed in Flash, thus freeing up more IRAM.\nThis option is only applicable when the SPI_FLASH_AUTO_SUSPEND feature is supported.", + "id": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions called from ISR context into Flash", + "type": "bool" + } + ], + "depends_on": null, + "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", + "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions into Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure", + "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "range": null, + "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-port", + "title": "Port", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", + "help": "Accessing memory in PSRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\n\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", + "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-extra", + "title": "Extra", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_PORT", + "name": "FREERTOS_PORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NO_AFFINITY", + "name": "FREERTOS_NO_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", + "id": "FREERTOS_DEBUG_OCDAWARE", + "name": "FREERTOS_DEBUG_OCDAWARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_PANIC_HANDLER_IRAM", + "help": null, + "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NUMBER_OF_CORES", + "name": "FREERTOS_NUMBER_OF_CORES", + "range": [ + 1, + 2 + ], + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_IN_IRAM", + "name": "FREERTOS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos", + "title": "FreeRTOS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_ASSERTION_EQUALS_SYSTEM", + "name": "HAL_ASSERTION_EQUALS_SYSTEM", + "range": null, + "title": "Same as system assertion level", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && ", + "help": null, + "id": "HAL_ASSERTION_DISABLE", + "name": "HAL_ASSERTION_DISABLE", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && ", + "help": null, + "id": "HAL_ASSERTION_SILENT", + "name": "HAL_ASSERTION_SILENT", + "range": null, + "title": "Silent", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && ", + "help": null, + "id": "HAL_ASSERTION_ENABLE", + "name": "HAL_ASSERTION_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + } + ], + "depends_on": null, + "help": "Set the assert behavior / level for HAL component.\nHAL component assert level can be set separately,\nbut the level can't exceed the system assertion level.\ne.g. If the system assertion is disabled, then the HAL\nassertion can't be enabled either. If the system assertion\nis enable, then the HAL assertion can still be disabled\nby this Kconfig option.", + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level", + "name": "HAL_DEFAULT_ASSERTION_LEVEL", + "title": "Default HAL assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "HAL_DEFAULT_ASSERTION_LEVEL", + "name": "HAL_DEFAULT_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_NONE", + "name": "HAL_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_ERROR", + "name": "HAL_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_WARN", + "name": "HAL_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_INFO", + "name": "HAL_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_DEBUG", + "name": "HAL_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_VERBOSE", + "name": "HAL_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": "!LOG_DEFAULT_LEVEL_NONE && !LOG_DEFAULT_LEVEL_ERROR && !LOG_DEFAULT_LEVEL_WARN && !LOG_DEFAULT_LEVEL_INFO && !LOG_DEFAULT_LEVEL_DEBUG && !LOG_DEFAULT_LEVEL_VERBOSE", + "help": "Specify how much output to see in HAL logs.", + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity", + "name": "HAL_LOG_LEVEL", + "title": "HAL layer log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "HAL_LOG_LEVEL", + "name": "HAL_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HAL_SYSTIMER", + "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", + "id": "HAL_SYSTIMER_USE_ROM_IMPL", + "name": "HAL_SYSTIMER_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of SysTimer HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HAL_WDT", + "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", + "id": "HAL_WDT_USE_ROM_IMPL", + "name": "HAL_WDT_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of WDT HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32H2", + "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nThis countermeasure is only necessary for ESP32-H2 < v1.2.", + "id": "HAL_ECDSA_GEN_SIG_CM", + "name": "HAL_ECDSA_GEN_SIG_CM", + "range": null, + "title": "Enable countermeasure for ECDSA signature generation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll-", + "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this option to use Log V1. Recommended for projects with strict stack constraints\nor that prioritize performance over flexibility.", + "id": "LOG_VERSION_1", + "name": "LOG_VERSION_1", + "range": null, + "title": "V1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use Log V2. Recommended for projects that require smaller binaries,\nruntime log formatting configuration, or advanced logging features.", + "id": "LOG_VERSION_2", + "name": "LOG_VERSION_2", + "range": null, + "title": "V2", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the log version to be used by the ESP log component.\n\n- \"V1\": This version integrates log formatting into the format string provided by the user.\n Logs are processed and formatted during compile time, leading to a larger binary file.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: Log strings are stored in Flash with added formatting characters.\n Format string on flash: \"[0;32mI (%lu) %s: chip revision: v%d.%d [0m\"\n\n- \"V2\": This version centralizes log formatting within the esp_log() function.\n User-supplied format strings are stored without added formatting, reducing binary size.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: This version supports runtime configuration of formatting and is more flexible,\n logging from constrained environments (ex.: ISR, Startup, Cache disabled).\n It may consumes a bit more stack and affect performance.\n Format string on flash: \"chip revision: v%d.%d\"\n\nUse V1 for minimal stack usage and simpler implementation.\nUse V2 for smaller binary sizes, more flexible log formatting, and advanced features like disabling\ncolors or timestamps.", + "id": "component-config-log-log-version", + "name": "LOG_VERSION", + "title": "Log version", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration sets the log version number based on the chosen log version.", + "id": "LOG_VERSION", + "name": "LOG_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_NONE", + "name": "LOG_DEFAULT_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_ERROR", + "name": "LOG_DEFAULT_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_WARN", + "name": "LOG_DEFAULT_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_INFO", + "name": "LOG_DEFAULT_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_DEBUG", + "name": "LOG_DEFAULT_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_VERBOSE", + "name": "LOG_DEFAULT_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set() function if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\n\nBy default, this setting limits which log statements\nare compiled into the program. For example, selecting\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible. To allow increasing log\nlevel above the default at runtime, see the next option.", + "id": "component-config-log-log-level-default-log-verbosity", + "name": "LOG_DEFAULT_LEVEL", + "title": "Default log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_DEFAULT_LEVEL", + "name": "LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_MAXIMUM_EQUALS_DEFAULT", + "name": "LOG_MAXIMUM_EQUALS_DEFAULT", + "range": null, + "title": "Same as default", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_ERROR", + "name": "LOG_MAXIMUM_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_WARN", + "name": "LOG_MAXIMUM_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_INFO", + "name": "LOG_MAXIMUM_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_DEBUG", + "name": "LOG_MAXIMUM_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_VERBOSE", + "name": "LOG_MAXIMUM_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "This config option sets the highest log verbosity that it's possible to select\nat runtime by calling esp_log_level_set(). This level may be higher than\nthe default verbosity level which is set when the app starts up.\n\nThis can be used enable debugging output only at a critical point, for a particular\ntag, or to minimize startup time but then enable more logs once the firmware has\nloaded.\n\nNote that increasing the maximum available log level will increase the firmware\nbinary size.\n\nThis option only applies to logging from the app, the bootloader log level is\nfixed at compile time to the separate \"Bootloader log verbosity\" setting.", + "id": "component-config-log-log-level-maximum-log-verbosity", + "name": "LOG_MAXIMUM_LEVEL", + "title": "Maximum log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MAXIMUM_LEVEL", + "name": "LOG_MAXIMUM_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", + "id": "LOG_MASTER_LEVEL", + "name": "LOG_MASTER_LEVEL", + "range": null, + "title": "Enable global master log level", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", + "id": "LOG_DYNAMIC_LEVEL_CONTROL", + "name": "LOG_DYNAMIC_LEVEL_CONTROL", + "range": null, + "title": "Enable dynamic log level changes at runtime", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", + "id": "LOG_TAG_LEVEL_IMPL_NONE", + "name": "LOG_TAG_LEVEL_IMPL_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", + "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "range": null, + "title": "Linked List", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "range": null, + "title": "Cache + Linked List", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", + "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks", + "name": "LOG_TAG_LEVEL_IMPL", + "title": "Method of tag level checks", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", + "id": "LOG_TAG_LEVEL_CACHE_ARRAY", + "name": "LOG_TAG_LEVEL_CACHE_ARRAY", + "range": null, + "title": "Array", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", + "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "range": null, + "title": "Binary Min-Heap", + "type": "bool" + } + ], + "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", + "id": "component-config-log-log-level-level-settings-cache-implementation", + "name": "LOG_TAG_LEVEL_CACHE_IMPL", + "title": "Cache implementation", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "range": null, + "title": "Log Tag Cache Size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-log-log-level-level-settings", + "title": "Level Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log-log-level", + "title": "Log Level", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.\n\nThis is disabled by default, as colors are added in IDF Monitor. If you want to use new lines\nin the messages or you are using a different terminal program, you may want to enable this option.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2", + "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", + "id": "LOG_COLORS_SUPPORT", + "name": "LOG_COLORS_SUPPORT", + "range": null, + "title": "Allow enabling color output at run time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_NONE", + "name": "LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_RTOS", + "name": "LOG_TIMESTAMP_SOURCE_RTOS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "range": null, + "title": "System Time (HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "range": null, + "title": "System Time (YY-MM-DD HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_UNIX", + "name": "LOG_TIMESTAMP_SOURCE_UNIX", + "range": null, + "title": "Unix time in milliseconds", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- \"System time (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- \"Unix time in milliseconds\" is the same as the two above,\n but in Unix time format and in milliseconds.\n e.g. (1718795571035).\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", + "id": "component-config-log-format-timestamp", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2", + "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", + "id": "LOG_TIMESTAMP_SUPPORT", + "name": "LOG_TIMESTAMP_SUPPORT", + "range": null, + "title": "Allow enabling timestamp output at run time", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-log-format", + "title": "Format", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MODE_TEXT_EN", + "name": "LOG_MODE_TEXT_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MODE_BINARY_EN", + "name": "LOG_MODE_BINARY_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", + "id": "LOG_MODE_TEXT", + "name": "LOG_MODE_TEXT", + "range": null, + "title": "Text Log Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", + "id": "LOG_MODE_BINARY", + "name": "LOG_MODE_BINARY", + "range": null, + "title": "Binary Log Mode", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-log-settings-log-mode", + "name": "LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-settings", + "title": "Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_IN_IRAM", + "name": "LOG_IN_IRAM", + "range": null, + "title": "Place logging functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-log", + "title": "Log", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_NEWLIB", + "name": "LIBC_NEWLIB", + "range": null, + "title": "NewLib", + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TOOLCHAIN_CLANG && IDF_EXPERIMENTAL_FEATURES && ", + "help": null, + "id": "LIBC_PICOLIBC", + "name": "LIBC_PICOLIBC", + "range": null, + "title": "Picolibc (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-libc-libc-to-build-application-with", + "name": "LIBC", + "title": "LibC to build application with", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LIBC_MISC_IN_IRAM", + "name": "LIBC_MISC_IN_IRAM", + "range": null, + "title": "Place misc libc functions (abort/assert/stdatomics) in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "LIBC_NEWLIB", + "help": "Enable this option to include be able to call the lock API from\ncode that runs while cache is disabled, e.g. IRAM interrupts.", + "id": "LIBC_LOCKS_PLACE_IN_IRAM", + "name": "LIBC_LOCKS_PLACE_IN_IRAM", + "range": null, + "title": "Place lock API in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_CRLF", + "name": "LIBC_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_LF", + "name": "LIBC_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_CR", + "name": "LIBC_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "help": "This option allows configuring the desired line endings sent to console\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurrence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-libc-line-ending-for-console-output", + "name": "LIBC_STDOUT_LINE_ENDING", + "title": "Line ending for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_CRLF", + "name": "LIBC_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_LF", + "name": "LIBC_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_CR", + "name": "LIBC_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "help": "This option allows configuring which input sequence on console produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurrence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-libc-line-ending-for-console-input", + "name": "LIBC_STDIN_LINE_ENDING", + "title": "Line ending for console input", + "type": "choice" + }, + { + "children": [], + "depends_on": "LIBC_NEWLIB", + "help": "In most chips the ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\n\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\nwill use functions available in ROM, reducing the application binary size.\nFunctions available in ROM run faster than functions which run from flash. Functions available\nin ROM can also run when flash instruction cache is disabled.\n\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\nthe nano versions and in this building with newlib nano might actually increase the size of\nthe binary. Which functions are present in ROM can be seen from ROM caps:\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", + "id": "LIBC_NEWLIB_NANO_FORMAT", + "name": "LIBC_NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_RTC_HRT", + "name": "LIBC_TIME_SYSCALL_USE_RTC_HRT", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_RTC", + "name": "LIBC_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_HRT", + "name": "LIBC_TIME_SYSCALL_USE_HRT", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_NONE", + "name": "LIBC_TIME_SYSCALL_USE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "This setting defines which hardware timers are used to\nimplement 'gettimeofday' and 'time' functions in C library.\n\n- If both high-resolution (systimer for all targets except ESP32)\n and RTC timers are used, timekeeping will continue in deep sleep.\n Time will be reported at 1 microsecond resolution.\n This is the default, and the recommended option.\n- If only high-resolution timer (systimer) is used, gettimeofday will\n provide time at microsecond resolution.\n Time will not be preserved when going into deep sleep mode.\n- If only RTC timer is used, timekeeping will continue in\n deep sleep, but time will be measured at 6.(6) microsecond\n resolution. Also the gettimeofday function itself may take\n longer to run.\n- If no timers are used, gettimeofday and time functions\n return -1 and set errno to ENOSYS; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-libc-timers-used-for-gettimeofday-function", + "name": "LIBC_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", + "help": "Enables performance-optimized implementations of memory and string functions\nwhen handling misaligned memory.\n\nThis increases the image size by ~1000 bytes.\n\nOptimized functions include:\n - memcpy\n - memset\n - memmove\n - str[n]cpy\n - str[n]cmp", + "id": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", + "name": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", + "range": null, + "title": "Use performance-optimized memXXX/strXXX functions on misaligned memory access", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-libc", + "title": "LibC", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "help": null, + "id": "MMU_PAGE_SIZE_8KB", + "name": "MMU_PAGE_SIZE_8KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_16KB", + "name": "MMU_PAGE_SIZE_16KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_32KB", + "name": "MMU_PAGE_SIZE_32KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_64KB", + "name": "MMU_PAGE_SIZE_64KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_MODE", + "name": "MMU_PAGE_MODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE", + "name": "MMU_PAGE_SIZE", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-soc-settings-mmu-config", + "title": "MMU Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-soc-settings", + "title": "SoC Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When this option is selected, the patch will be enabled for XMC.\nFollow the recommended flow by XMC for better stability.\n\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.", + "id": "SPI_FLASH_BROWNOUT_RESET_XMC", + "name": "SPI_FLASH_BROWNOUT_RESET_XMC", + "range": null, + "title": "Enable sending reset when brownout for XMC flash chips", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", + "id": "SPI_FLASH_BROWNOUT_RESET", + "name": "SPI_FLASH_BROWNOUT_RESET", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout", + "title": "SPI Flash behavior when brownout", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Invisible for users.", + "id": "SPI_FLASH_UNDER_HIGH_FREQ", + "name": "SPI_FLASH_UNDER_HIGH_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_ENA", + "name": "SPI_FLASH_HPM_ENA", + "range": null, + "title": "Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_AUTO", + "name": "SPI_FLASH_HPM_AUTO", + "range": null, + "title": "Auto (Not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DIS", + "name": "SPI_FLASH_HPM_DIS", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "(IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32P4) && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-", + "name": "SPI_FLASH_HPM", + "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", + "id": "SPI_FLASH_HPM_ON", + "name": "SPI_FLASH_HPM_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_AUTO", + "name": "SPI_FLASH_HPM_DC_AUTO", + "range": null, + "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_DISABLE", + "name": "SPI_FLASH_HPM_DC_DISABLE", + "range": null, + "title": "Disable (READ DOCS FIRST)", + "type": "bool" + } + ], + "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-", + "name": "SPI_FLASH_HPM_DC", + "title": "Support HPM using DC (READ DOCS FIRST)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", + "id": "SPI_FLASH_HPM_DC_ON", + "name": "SPI_FLASH_HPM_DC_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", + "id": "SPI_FLASH_AUTO_SUSPEND", + "name": "SPI_FLASH_AUTO_SUSPEND", + "range": null, + "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", + "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "range": [ + 20, + 100 + ], + "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_TSUS_TRES_SEPERATE_CTR && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Trs parameter. Trs means CS Latency Between Resume And Next Suspend.\nYou can refer to the chapter of AC CHARACTERISTICS of flash datasheet.\nFor high-performance scenarios, some flash chips allow this set value to be smaller than the\ngiven value in the datasheet without causing errors in the flash state machine.\nWhen you have any related needs, please contact espressif business team.", + "id": "SPI_FLASH_SUSPEND_TRS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TRS_VAL_US", + "range": null, + "title": "SPI flash tRS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", + "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "range": null, + "title": "Enable XMC-C series flash chip suspend feature anyway", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Flash suspend has a defect on ESP32C6 until v0.2 and ESP32H2 until v1.2. If you already use suspend\nfeature for mass production, you can enable this for bypassing check after knowing the risk.\nBut if you are new users, or developing new applications, or producing a new batch,\nplease DO NOT enable this config option.\n\nFor more information, please refer to errata or connect to Espressif business support team.", + "id": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", + "range": null, + "title": "Enable chip suspend feature on c6 or h2 anyway (DO NOT ENABLE FOR NEW USERS OR APPLICATIONS)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && IDF_EXPERIMENTAL_FEATURES && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this config will disable auto-resume from hardware. Thus the software will resume the chip\nafter any higher priority task/interrupt which suspend the chip. The benefit is that the suspend-resume\nwill not disturb the higher priority task and interrupt.\n\nThis currently is only valid on single core chip.", + "id": "SPI_FLASH_SOFTWARE_RESUME", + "name": "SPI_FLASH_SOFTWARE_RESUME", + "range": null, + "title": "Resume flash program/erase form suspend state by software control", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Disable freertos task scheduler when CONFIG_SPI_FLASH_AUTO_SUSPEND is enabled.\nThus only interrupt can trigger a suspend. When SPI_FLASH_AUTO_SUSPEND is enabled,\ndefault behavior is not disable the task scheduler, so both interrupt and high priority\ntask can suspend the erase/program operation. When this option is enabled, task\nscheduler is disabled, only interrupt can suspend erase/program operation.", + "id": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", + "name": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", + "range": null, + "title": "Disable task scheduler when suspend is enabled when SPI1 operation is ongoing", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Majority flash supports to use flash register to judge if flash suspend status is\ndone or not. So enable this config, the behavior would use flash register WIP bit to judge\nwhether suspend is valid instead of waiting for a specific long time, which can save a\nlot of time and benefit for performance improvement.", + "id": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", + "name": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", + "range": null, + "title": "Check flash status automatically after flash suspend", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When disabled, certain functions in `spi_flash` component will be placed into Flash memory\ninstead of IRAM. Disabling this option will save almost 10KB of IRAM depending on which\nfunctions are used.\n\nWhen enabled, these functions will be placed in internal RAM, with better performance.\n\nFor more information please refer to programming guide.", + "id": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "name": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "range": null, + "title": "Place spi_flash operation functions into IRAM", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first-", + "title": "Optional and Experimental Features (READ DOCS FIRST)", + "type": "menu" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration", + "title": "Main Flash configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is enabled, if SPI flash write verification fails then a log error line\nwill be written with the address, expected & actual values. This can be useful when\ndebugging hardware SPI flash problems.", + "id": "SPI_FLASH_LOG_FAILED_WRITE", + "name": "SPI_FLASH_LOG_FAILED_WRITE", + "range": null, + "title": "Log errors if verification fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\nones will log a warning. Such writes will not result in the requested data appearing identically\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\nAfter erasing, individual bits can only be written from one to zero.\n\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\nSuch software will log spurious warnings if this option is enabled.", + "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "range": null, + "title": "Log warning if writing zero bits to ones", + "type": "bool" + } + ], + "depends_on": "!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is enabled, any time SPI flash is written then the data will be read\nback and verified. This can catch hardware problems with SPI flash, or flash which\nwas not erased before verification.\n\nThis will slightly influence the write performance.", + "id": "SPI_FLASH_VERIFY_WRITE", + "name": "SPI_FLASH_VERIFY_WRITE", + "range": null, + "title": "Verify SPI flash writes", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option enables the following APIs:\n\n- esp_flash_reset_counters\n- esp_flash_dump_counters\n- esp_flash_get_counters\n\nThese APIs may be used to collect performance data for spi_flash APIs\nand to help understand behaviour of libraries which use SPI flash.", + "id": "SPI_FLASH_ENABLE_COUNTERS", + "name": "SPI_FLASH_ENABLE_COUNTERS", + "range": null, + "title": "Enable operation counters", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option should be enabled, if any one of the following is true: (1) need to write\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\nSPI flash chip is manufactured by ISSI.", + "id": "SPI_FLASH_ROM_DRIVER_PATCH", + "name": "SPI_FLASH_ROM_DRIVER_PATCH", + "range": null, + "title": "Enable SPI flash ROM driver patched functions", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_SPI_FLASH && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this flag to use new SPI flash driver functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nBut you can use all of our flash features.\n\nIf making this as \"y\" in your project, you will increase free IRAM.\nBut you may miss out on some flash features and support for new flash chips.\n\nCurrently the ROM cannot support the following features:\n\n- SPI_FLASH_AUTO_SUSPEND (C3, S3)", + "id": "SPI_FLASH_ROM_IMPL", + "name": "SPI_FLASH_ROM_IMPL", + "range": null, + "title": "Use esp_flash implementation in ROM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "range": null, + "title": "Aborts", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "range": null, + "title": "Fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "range": null, + "title": "Allowed", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI flash APIs can optionally abort or return a failure code\nif erasing or writing addresses that fall at the beginning\nof flash (covering the bootloader and partition table) or that\noverlap the app partition that contains the running app.\n\nIt is not recommended to ever write to these regions from an IDF app,\nand this check prevents logic errors or corrupted firmware memory from\ndamaging these regions.\n\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\nROM functions. These functions should not be called directly from IDF\napplications.", + "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions", + "name": "SPI_FLASH_DANGEROUS_WRITE", + "title": "Writing to dangerous flash regions", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Each SPI bus needs a lock for arbitration among devices. This allows multiple\ndevices on a same bus, but may reduce the speed of esp_flash driver access to the\nmain flash chip.\n\nIf you only need to use esp_flash driver to access the main flash chip, disable\nthis option, and the lock will be bypassed on SPI1 bus. Otherwise if extra devices\nare needed to attach to SPI1 bus, enable this option.", + "id": "SPI_FLASH_SHARE_SPI1_BUS", + "name": "SPI_FLASH_SHARE_SPI1_BUS", + "range": null, + "title": "Support other devices attached to SPI1 bus", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Some flash chips can have very high \"max\" erase times, especially for block erase (32KB or 64KB).\nThis option allows to bypass \"block erase\" and always do sector erase commands.\nThis will be much slower overall in most cases, but improves latency for other code to run.", + "id": "SPI_FLASH_BYPASS_BLOCK_ERASE", + "name": "SPI_FLASH_BYPASS_BLOCK_ERASE", + "range": null, + "title": "Bypass a block erase and always do sector erase", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If a duration of one erase command is large\nthen it will yield CPUs after finishing a current command.", + "id": "SPI_FLASH_ERASE_YIELD_DURATION_MS", + "name": "SPI_FLASH_ERASE_YIELD_DURATION_MS", + "range": null, + "title": "Duration of erasing to yield CPUs (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Defines how many ticks will be before returning to continue a erasing.", + "id": "SPI_FLASH_ERASE_YIELD_TICKS", + "name": "SPI_FLASH_ERASE_YIELD_TICKS", + "range": null, + "title": "CPU release time (tick) for an erase operation", + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This allows to yield the CPUs between erase commands.\nPrevents starvation of other tasks.\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\nwatchdog timeout.\nFor more information, please check `SPI Flash API` reference documentation\nunder section `OS Function`.", + "id": "SPI_FLASH_YIELD_DURING_ERASE", + "name": "SPI_FLASH_YIELD_DURING_ERASE", + "range": null, + "title": "Enables yield operation during flash erase", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Flash write is broken down in terms of multiple (smaller) write operations.\nThis configuration options helps to set individual write chunk size, smaller\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\ndisabled for shorter duration.", + "id": "SPI_FLASH_WRITE_CHUNK_SIZE", + "name": "SPI_FLASH_WRITE_CHUNK_SIZE", + "range": [ + 256, + 8192 + ], + "title": "Flash write chunk size", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI Flash driver uses the flash size configured in bootloader header by default.\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\nthe app header if the size in the bootloader header is incorrect.", + "id": "SPI_FLASH_SIZE_OVERRIDE", + "name": "SPI_FLASH_SIZE_OVERRIDE", + "range": null, + "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", + "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "range": null, + "title": "Flash timeout checkout disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option allows the chip driver list to be customized, instead of using the default list provided by\nESP-IDF.\n\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\n`default_registered_chips` structure must be provided by the user.\n\nSee example: custom_chip_driver under examples/storage for more details.", + "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "range": null, + "title": "Override default chip driver list", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of ISSI chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "range": null, + "title": "ISSI", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_MXIC_CHIP", + "name": "SPI_FLASH_SUPPORT_MXIC_CHIP", + "range": null, + "title": "MXIC", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\nmode.\n\nThis adds support for variant chips, however will extend detecting time and image\nsize. Note that the default chip driver supports the GD chips with product ID\n60H.", + "id": "SPI_FLASH_SUPPORT_GD_CHIP", + "name": "SPI_FLASH_SUPPORT_GD_CHIP", + "range": null, + "title": "GigaDevice", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of Winbond chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_WINBOND_CHIP", + "name": "SPI_FLASH_SUPPORT_WINBOND_CHIP", + "range": null, + "title": "Winbond", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of BOYA chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_BOYA_CHIP", + "name": "SPI_FLASH_SUPPORT_BOYA_CHIP", + "range": null, + "title": "BOYA", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of TH chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_TH_CHIP", + "name": "SPI_FLASH_SUPPORT_TH_CHIP", + "range": null, + "title": "TH", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of Octal MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "name": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "range": null, + "title": "mxic (opi)", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver-auto-detect-flash-chips", + "title": "Auto-detect flash chips", + "type": "menu" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option enables flash read/write operations to encrypted partition/s. This option\nis kept enabled irrespective of state of flash encryption feature. However, in case\napplication is not using flash encryption feature and is in need of some additional\nmemory from IRAM region (~1KB) then this config can be disabled.", + "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "range": null, + "title": "Enable encrypted partition read/write operations", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver", + "title": "SPI Flash driver", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "By enabling this option, ESP-IDF experimental feature options will be visible.\n\nNote you should still enable a certain experimental feature option to use it, and you\nshould read the corresponding risk warning and known issue list carefully.\n\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS\n- CONFIG_LIBC_PICOLIBC", + "id": "IDF_EXPERIMENTAL_FEATURES", + "name": "IDF_EXPERIMENTAL_FEATURES", + "range": null, + "title": "Make experimental features visible", + "type": "bool" + } +] \ No newline at end of file diff --git a/build/bootloader/config/sdkconfig.cmake b/build/bootloader/config/sdkconfig.cmake new file mode 100644 index 0000000..152ecc4 --- /dev/null +++ b/build/bootloader/config/sdkconfig.cmake @@ -0,0 +1,931 @@ +# + # Automatically generated file. DO NOT EDIT. + # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file + # +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_PHY_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_GDMA_SUPPORTED "y") +set(CONFIG_SOC_UHCI_SUPPORTED "y") +set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_CAM_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") +set(CONFIG_SOC_CACHE_SUPPORT_WRAP "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_ULP_FSM_SUPPORTED "y") +set(CONFIG_SOC_RISCV_COPROC_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_USB_OTG_SUPPORTED "y") +set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") +set(CONFIG_SOC_CCOMP_TIMER_SUPPORTED "y") +set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") +set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") +set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_SDMMC_HOST_SUPPORTED "y") +set(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_MEM_SUPPORTED "y") +set(CONFIG_SOC_PSRAM_DMA_CAPABLE "y") +set(CONFIG_SOC_XT_WDT_SUPPORTED "y") +set(CONFIG_SOC_I2S_SUPPORTED "y") +set(CONFIG_SOC_RMT_SUPPORTED "y") +set(CONFIG_SOC_SDM_SUPPORTED "y") +set(CONFIG_SOC_GPSPI_SUPPORTED "y") +set(CONFIG_SOC_LEDC_SUPPORTED "y") +set(CONFIG_SOC_I2C_SUPPORTED "y") +set(CONFIG_SOC_SYSTIMER_SUPPORTED "y") +set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") +set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_AES_SUPPORTED "y") +set(CONFIG_SOC_MPI_SUPPORTED "y") +set(CONFIG_SOC_SHA_SUPPORTED "y") +set(CONFIG_SOC_HMAC_SUPPORTED "y") +set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_MEMPROT_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_BOD_SUPPORTED "y") +set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") +set(CONFIG_SOC_MPU_SUPPORTED "y") +set(CONFIG_SOC_WDT_SUPPORTED "y") +set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") +set(CONFIG_SOC_RNG_SUPPORTED "y") +set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT "y") +set(CONFIG_SOC_PM_SUPPORTED "y") +set(CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG "y") +set(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_ARBITER_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") +set(CONFIG_SOC_ADC_MONITOR_SUPPORTED "y") +set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") +set(CONFIG_SOC_ADC_PERIPH_NUM "2") +set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "10") +set(CONFIG_SOC_ADC_ATTEN_NUM "4") +set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "2") +set(CONFIG_SOC_ADC_PATT_LEN_MAX "24") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") +set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_APB_BACKUP_DMA "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED "y") +set(CONFIG_SOC_CACHE_FREEZE_SUPPORTED "y") +set(CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC "y") +set(CONFIG_SOC_CPU_CORES_NUM "2") +set(CONFIG_SOC_CPU_INTR_NUM "32") +set(CONFIG_SOC_CPU_HAS_FPU "y") +set(CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES "y") +set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x40") +set(CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT "16") +set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "4096") +set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") +set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") +set(CONFIG_SOC_AHB_GDMA_VERSION "1") +set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP "5") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "5") +set(CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "49") +set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") +set(CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT "y") +set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") +set(CONFIG_SOC_GPIO_VALID_GPIO_MASK "0x1ffffffffffff") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "48") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "48") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0x1fffffc000000") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") +set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") +set(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE "y") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_HP_I2C_NUM "2") +set(CONFIG_SOC_I2C_FIFO_LEN "32") +set(CONFIG_SOC_I2C_CMD_REG_NUM "8") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") +set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") +set(CONFIG_SOC_I2C_SUPPORT_RTC "y") +set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") +set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") +set(CONFIG_SOC_I2S_NUM "2") +set(CONFIG_SOC_I2S_HW_VERSION_2 "y") +set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM2PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_RX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM2PCM "y") +set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "2") +set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "4") +set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_LEDC_TIMER_NUM "4") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "14") +set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") +set(CONFIG_SOC_MCPWM_GROUPS "2") +set(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP "y") +set(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER "3") +set(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE "y") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") +set(CONFIG_SOC_MMU_PERIPH_NUM "1") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_PCNT_GROUPS "1") +set(CONFIG_SOC_PCNT_UNITS_PER_GROUP "4") +set(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT "2") +set(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT "2") +set(CONFIG_SOC_RMT_GROUPS "1") +set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "4") +set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "4") +set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") +set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") +set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") +set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") +set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_RMT_SUPPORT_APB "y") +set(CONFIG_SOC_RMT_SUPPORT_DMA "y") +set(CONFIG_SOC_LCD_I80_SUPPORTED "y") +set(CONFIG_SOC_LCD_RGB_SUPPORTED "y") +set(CONFIG_SOC_LCD_I80_BUSES "1") +set(CONFIG_SOC_LCD_RGB_PANELS "1") +set(CONFIG_SOC_LCD_I80_BUS_WIDTH "16") +set(CONFIG_SOC_LCD_RGB_DATA_WIDTH "16") +set(CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV "y") +set(CONFIG_SOC_LCDCAM_I80_NUM_BUSES "1") +set(CONFIG_SOC_LCDCAM_I80_BUS_WIDTH "16") +set(CONFIG_SOC_LCDCAM_RGB_NUM_PANELS "1") +set(CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH "16") +set(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH "128") +set(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM "549") +set(CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH "128") +set(CONFIG_SOC_RTCIO_PIN_COUNT "22") +set(CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED "y") +set(CONFIG_SOC_RTCIO_HOLD_SUPPORTED "y") +set(CONFIG_SOC_RTCIO_WAKE_SUPPORTED "y") +set(CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_SDM_GROUPS "1") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_SDM_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "3") +set(CONFIG_SOC_SPI_MAX_CS_NUM "6") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") +set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") +set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") +set(CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT "y") +set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") +set(CONFIG_SOC_SPI_SUPPORT_OCT "y") +set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") +set(CONFIG_SOC_SPI_SCT_REG_NUM "14") +set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") +set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_SPIRAM_SUPPORTED "y") +set(CONFIG_SOC_SPIRAM_XIP_SUPPORTED "y") +set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") +set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") +set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") +set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") +set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") +set(CONFIG_SOC_TIMER_GROUPS "2") +set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "2") +set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB "y") +set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "4") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") +set(CONFIG_SOC_TOUCH_SENSOR_VERSION "2") +set(CONFIG_SOC_TOUCH_SENSOR_NUM "15") +set(CONFIG_SOC_TOUCH_MIN_CHAN_ID "1") +set(CONFIG_SOC_TOUCH_MAX_CHAN_ID "14") +set(CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK "y") +set(CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP "y") +set(CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF "y") +set(CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING "y") +set(CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN "y") +set(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM "3") +set(CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM "1") +set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") +set(CONFIG_SOC_TWAI_MASK_FILTER_NUM "1") +set(CONFIG_SOC_TWAI_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_BRP_MAX "16384") +set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "3") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") +set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") +set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") +set(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE "y") +set(CONFIG_SOC_UHCI_NUM "1") +set(CONFIG_SOC_USB_OTG_PERIPH_NUM "1") +set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") +set(CONFIG_SOC_SHA_SUPPORT_DMA "y") +set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") +set(CONFIG_SOC_SHA_GDMA "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA224 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA384 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_224 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_256 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_T "y") +set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "4096") +set(CONFIG_SOC_AES_SUPPORT_DMA "y") +set(CONFIG_SOC_AES_GDMA "y") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +set(CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") +set(CONFIG_SOC_PM_SUPPORT_TAGMEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED "y") +set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "y") +set(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL "y") +set(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA "y") +set(CONFIG_SOC_PM_MODEM_PD_BY_SW "y") +set(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED "y") +set(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 "y") +set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") +set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") +set(CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2 "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE "y") +set(CONFIG_SOC_EFUSE_HARD_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") +set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") +set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") +set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") +set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") +set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") +set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "64") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 "y") +set(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE "16") +set(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE "256") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +set(CONFIG_SOC_MAC_BB_PD_MEM_SIZE "192") +set(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH "12") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") +set(CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY "y") +set(CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP "y") +set(CONFIG_SOC_COEX_HW_PTI "y") +set(CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE "y") +set(CONFIG_SOC_SDMMC_USE_GPIO_MATRIX "y") +set(CONFIG_SOC_SDMMC_NUM_SLOTS "2") +set(CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_SDMMC_DELAY_PHASE_NUM "4") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") +set(CONFIG_SOC_WIFI_HW_TSF "y") +set(CONFIG_SOC_WIFI_FTM_SUPPORT "y") +set(CONFIG_SOC_WIFI_GCMP_SUPPORT "y") +set(CONFIG_SOC_WIFI_WAPI_SUPPORT "y") +set(CONFIG_SOC_WIFI_CSI_SUPPORT "y") +set(CONFIG_SOC_WIFI_MESH_SUPPORT "y") +set(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW "y") +set(CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND "y") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_BLE_50_SUPPORTED "y") +set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_ULP_HAS_ADC "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV "y") +set(CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM "1") +set(CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX "16") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TOOLCHAIN "gcc") +set(CONFIG_IDF_TOOLCHAIN_GCC "y") +set(CONFIG_IDF_TARGET_ARCH_XTENSA "y") +set(CONFIG_IDF_TARGET_ARCH "xtensa") +set(CONFIG_IDF_TARGET "esp32s3") +set(CONFIG_IDF_INIT_VERSION "5.5.1") +set(CONFIG_IDF_TARGET_ESP32S3 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x9") +set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") +set(CONFIG_APP_BUILD_TYPE_RAM "") +set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") +set(CONFIG_APP_BUILD_BOOTLOADER "y") +set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") +set(CONFIG_APP_REPRODUCIBLE_BUILD "") +set(CONFIG_APP_NO_BLOBS "") +set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_BOOTLOADER_LOG_VERSION_1 "y") +set(CONFIG_BOOTLOADER_LOG_VERSION "1") +set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL "3") +set(CONFIG_BOOTLOADER_LOG_COLORS "") +set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") +set(CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN "y") +set(CONFIG_BOOTLOADER_LOG_MODE_TEXT "y") +set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V "y") +set(CONFIG_BOOTLOADER_FACTORY_RESET "") +set(CONFIG_BOOTLOADER_APP_TEST "") +set(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") +set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS "") +set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0x0") +set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") +set(CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED "y") +set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") +set(CONFIG_APP_COMPILE_TIME_DATE "y") +set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") +set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") +set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") +set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") +set(CONFIG_ESP_ROM_HAS_CRC_LE "y") +set(CONFIG_ESP_ROM_HAS_CRC_BE "y") +set(CONFIG_ESP_ROM_HAS_MZ_CRC32 "y") +set(CONFIG_ESP_ROM_HAS_JPEG_DECODE "y") +set(CONFIG_ESP_ROM_UART_CLK_IS_XTAL "y") +set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") +set(CONFIG_ESP_ROM_USB_OTG_NUM "3") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "4") +set(CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG "y") +set(CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV "y") +set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") +set(CONFIG_ESP_ROM_HAS_HAL_WDT "y") +set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") +set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP "y") +set(CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME "y") +set(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE "y") +set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") +set(CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG "y") +set(CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG "y") +set(CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_HAS_VERSION "y") +set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") +set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") +set(CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") +set(CONFIG_ESPTOOLPY_NO_STUB "") +set(CONFIG_ESPTOOLPY_OCT_FLASH "") +set(CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_120M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "80m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") +set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default_reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard_reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "y") +set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") +set(CONFIG_PARTITION_TABLE_CUSTOM "") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") +set(CONFIG_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") +set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "y") +set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "") +set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") +set(CONFIG_COMPILER_CXX_EXCEPTIONS "") +set(CONFIG_COMPILER_CXX_RTTI "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") +set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") +set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "y") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") +set(CONFIG_COMPILER_RT_LIB_NAME "gcc") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "y") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") +set(CONFIG_COMPILER_STATIC_ANALYZER "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_MAX_BLK_LEN "256") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_ESP32S3_REV_MIN_0 "y") +set(CONFIG_ESP32S3_REV_MIN_1 "") +set(CONFIG_ESP32S3_REV_MIN_2 "") +set(CONFIG_ESP32S3_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32S3_REV_MAX_FULL "99") +set(CONFIG_ESP_REV_MAX_FULL "99") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "199") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") +set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") +set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "y") +set(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "2000") +set(CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION "") +set(CONFIG_ESP_SLEEP_DEBUG "") +set(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS "y") +set(CONFIG_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_GDMA_OBJ_DRAM_SAFE "y") +set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") +set(CONFIG_GDMA_ISR_IRAM_SAFE "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_BROWNOUT_USE_INTR "y") +set(CONFIG_ESP_INTR_IN_IRAM "y") +set(CONFIG_ESP_ROM_PRINT_IN_IRAM "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB "y") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE "0x4000") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS "y") +set(CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS "8") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B "y") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE "32") +set(CONFIG_ESP32S3_DATA_CACHE_16KB "") +set(CONFIG_ESP32S3_DATA_CACHE_32KB "y") +set(CONFIG_ESP32S3_DATA_CACHE_64KB "") +set(CONFIG_ESP32S3_DATA_CACHE_SIZE "0x8000") +set(CONFIG_ESP32S3_DATA_CACHE_4WAYS "") +set(CONFIG_ESP32S3_DATA_CACHE_8WAYS "y") +set(CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS "8") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_16B "") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_32B "y") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_64B "") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE "32") +set(CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM "") +set(CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP32S3_TRAX "") +set(CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP_SYSTEM_IN_IRAM "y") +set(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT "") +set(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT "") +set(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS "0") +set(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") +set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") +set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE "y") +set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK "y") +set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "3584") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 "y") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") +set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") +set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_USB_CDC "") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") +set(CONFIG_ESP_CONSOLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_NUM "0") +set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") +set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP_INT_WDT "y") +set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_ESP_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_ESP_TASK_WDT_EN "y") +set(CONFIG_ESP_TASK_WDT_INIT "y") +set(CONFIG_ESP_TASK_WDT_PANIC "") +set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP_PANIC_HANDLER_IRAM "") +set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP_DEBUG_OCDAWARE "y") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") +set(CONFIG_ESP_SYSTEM_BBPLL_RECALIB "y") +set(CONFIG_ESP_IPC_ENABLE "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1280") +set(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY "y") +set(CONFIG_ESP_IPC_ISR_ENABLE "y") +set(CONFIG_FREERTOS_SMP "") +set(CONFIG_FREERTOS_UNICORE "") +set(CONFIG_FREERTOS_HZ "100") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") +set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") +set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") +set(CONFIG_FREERTOS_USE_IDLE_HOOK "") +set(CONFIG_FREERTOS_USE_TICK_HOOK "") +set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") +set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") +set(CONFIG_FREERTOS_USE_TIMERS "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 "") +set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") +set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") +set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") +set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") +set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") +set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") +set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") +set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") +set(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP "") +set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") +set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") +set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") +set(CONFIG_FREERTOS_FPU_IN_ISR "") +set(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") +set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") +set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_PORT "y") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") +set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") +set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") +set(CONFIG_FREERTOS_NUMBER_OF_CORES "2") +set(CONFIG_FREERTOS_IN_IRAM "y") +set(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM "y") +set(CONFIG_HAL_ASSERTION_DISABLE "") +set(CONFIG_HAL_ASSERTION_SILENT "") +set(CONFIG_HAL_ASSERTION_ENABLE "") +set(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL "2") +set(CONFIG_HAL_WDT_USE_ROM_IMPL "y") +set(CONFIG_LOG_VERSION_1 "y") +set(CONFIG_LOG_VERSION_2 "") +set(CONFIG_LOG_VERSION "1") +set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") +set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") +set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") +set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") +set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") +set(CONFIG_LOG_DEFAULT_LEVEL "3") +set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") +set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") +set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") +set(CONFIG_LOG_MAXIMUM_LEVEL "3") +set(CONFIG_LOG_MASTER_LEVEL "") +set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") +set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") +set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") +set(CONFIG_LOG_COLORS "") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_LOG_MODE_TEXT_EN "y") +set(CONFIG_LOG_MODE_TEXT "y") +set(CONFIG_LOG_IN_IRAM "y") +set(CONFIG_LIBC_NEWLIB "y") +set(CONFIG_LIBC_MISC_IN_IRAM "y") +set(CONFIG_LIBC_LOCKS_PLACE_IN_IRAM "y") +set(CONFIG_LIBC_NEWLIB_NANO_FORMAT "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_HRT "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_NONE "") +set(CONFIG_MMU_PAGE_SIZE_64KB "y") +set(CONFIG_MMU_PAGE_MODE "64KB") +set(CONFIG_MMU_PAGE_SIZE "0x10000") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") +set(CONFIG_SPI_FLASH_HPM_ENA "") +set(CONFIG_SPI_FLASH_HPM_AUTO "y") +set(CONFIG_SPI_FLASH_HPM_DIS "") +set(CONFIG_SPI_FLASH_HPM_ON "y") +set(CONFIG_SPI_FLASH_HPM_DC_AUTO "y") +set(CONFIG_SPI_FLASH_HPM_DC_DISABLE "") +set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") +set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND "") +set(CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM "y") +set(CONFIG_SPI_FLASH_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_ROM_IMPL "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") +set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") +set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") +set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") +set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") +set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") +set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") +set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") +set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") +set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP "y") +set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_UHCI_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_LCDCAM_SUPPORTED;CONFIG_SOC_LCDCAM_CAM_SUPPORTED;CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED;CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_CACHE_SUPPORT_WRAP;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_RISCV_COPROC_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_USB_OTG_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_PSRAM_DMA_CAPABLE;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_MEMPROT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_MPU_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_ARBITER_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_DIGI_MONITOR_NUM;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FPU;CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_SUPPORTS_PCM2PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_SUPPORTS_PDM2PCM;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_DMA;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_RGB_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_RGB_PANELS;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LCD_RGB_DATA_WIDTH;CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_LCDCAM_I80_NUM_BUSES;CONFIG_SOC_LCDCAM_I80_BUS_WIDTH;CONFIG_SOC_LCDCAM_RGB_NUM_PANELS;CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_SUPPORT_OCT;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPIRAM_XIP_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TOUCH_SENSOR_VERSION;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_MIN_CHAN_ID;CONFIG_SOC_TOUCH_MAX_CHAN_ID;CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK;CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP;CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF;CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING;CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN;CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM;CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED;CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_MASK_FILTER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE;CONFIG_SOC_UHCI_NUM;CONFIG_SOC_USB_OTG_PERIPH_NUM;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_SHA_SUPPORT_SHA512_224;CONFIG_SOC_SHA_SUPPORT_SHA512_256;CONFIG_SOC_SHA_SUPPORT_SHA512_T;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_TAGMEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL;CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA;CONFIG_SOC_PM_MODEM_PD_BY_SW;CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED;CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE;CONFIG_SOC_EFUSE_HARD_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE;CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY;CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM;CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE;CONFIG_SOC_SDMMC_USE_GPIO_MATRIX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_SDMMC_DELAY_PHASE_NUM;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM;CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32S3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_VERSION_1;CONFIG_BOOTLOADER_LOG_VERSION;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN;CONFIG_BOOTLOADER_LOG_MODE_TEXT;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG;CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG;CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_OCT_FLASH;CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_120M;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP32S3_REV_MIN_0;CONFIG_ESP32S3_REV_MIN_1;CONFIG_ESP32S3_REV_MIN_2;CONFIG_ESP32S3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32S3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY;CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION;CONFIG_ESP_SLEEP_DEBUG;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES;CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_HANDLER_IN_IRAM;CONFIG_GDMA_OBJ_DRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32S3_BROWNOUT_DET_LVL;CONFIG_ESP_BROWNOUT_USE_INTR;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_INTR_IN_IRAM;CONFIG_ESP_ROM_PRINT_IN_IRAM;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE;CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS;CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE;CONFIG_ESP32S3_DATA_CACHE_16KB;CONFIG_ESP32S3_DATA_CACHE_32KB;CONFIG_ESP32S3_DATA_CACHE_64KB;CONFIG_ESP32S3_DATA_CACHE_SIZE;CONFIG_ESP32S3_DATA_CACHE_4WAYS;CONFIG_ESP32S3_DATA_CACHE_8WAYS;CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_DATA_CACHE_LINE_16B;CONFIG_ESP32S3_DATA_CACHE_LINE_32B;CONFIG_ESP32S3_DATA_CACHE_LINE_64B;CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE;CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM;CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32S3_TRAX;CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_IN_IRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_CDC;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_TASK_WDT_INIT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP32S3_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_SYSTEM_BBPLL_RECALIB;CONFIG_ESP_IPC_ENABLE;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_IPC_ISR_ENABLE;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_FREERTOS_IN_IRAM;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_LOG_VERSION_1;CONFIG_LOG_VERSION_2;CONFIG_LOG_VERSION;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LOG_MODE_TEXT_EN;CONFIG_LOG_MODE_TEXT;CONFIG_LOG_IN_IRAM;CONFIG_LIBC_NEWLIB;CONFIG_LIBC_MISC_IN_IRAM;CONFIG_LIBC_LOCKS_PLACE_IN_IRAM;CONFIG_LIBC_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC;CONFIG_LIBC_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_NONE;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_HPM_ENA;CONFIG_SPI_FLASH_HPM_AUTO;CONFIG_SPI_FLASH_HPM_DIS;CONFIG_SPI_FLASH_HPM_ON;CONFIG_SPI_FLASH_HPM_DC_AUTO;CONFIG_SPI_FLASH_HPM_DC_DISABLE;CONFIG_SPI_FLASH_AUTO_SUSPEND;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND;CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_IDF_EXPERIMENTAL_FEATURES) +# List of deprecated options for backward compatibility +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_NO_BLOBS "") +set(CONFIG_APP_ROLLBACK_ENABLE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "y") +set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL "3") +set(CONFIG_FLASH_ENCRYPTION_ENABLED "") +set(CONFIG_FLASHMODE_QIO "") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "y") +set(CONFIG_FLASHMODE_DOUT "") +set(CONFIG_MONITOR_BAUD "115200") +set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "y") +set(CONFIG_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "y") +set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") +set(CONFIG_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_CXX_EXCEPTIONS "") +set(CONFIG_STACK_CHECK_NONE "y") +set(CONFIG_STACK_CHECK_NORM "") +set(CONFIG_STACK_CHECK_STRONG "") +set(CONFIG_STACK_CHECK_ALL "") +set(CONFIG_WARN_WRITE_STRINGS "") +set(CONFIG_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_ESP32S3_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 "y") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_MAIN_TASK_STACK_SIZE "3584") +set(CONFIG_CONSOLE_UART_DEFAULT "y") +set(CONFIG_CONSOLE_UART_CUSTOM "") +set(CONFIG_CONSOLE_UART_NONE "") +set(CONFIG_ESP_CONSOLE_UART_NONE "") +set(CONFIG_CONSOLE_UART "y") +set(CONFIG_CONSOLE_UART_NUM "0") +set(CONFIG_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_INT_WDT "y") +set(CONFIG_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_TASK_WDT "y") +set(CONFIG_ESP_TASK_WDT "y") +set(CONFIG_TASK_WDT_PANIC "") +set(CONFIG_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP32_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP32S3_DEBUG_OCDAWARE "y") +set(CONFIG_IPC_TASK_STACK_SIZE "1280") +set(CONFIG_TIMER_TASK_PRIORITY "1") +set(CONFIG_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_TIMER_QUEUE_LENGTH "10") +set(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK "") +set(CONFIG_HAL_ASSERTION_SILIENT "") +set(CONFIG_NEWLIB_NANO_FORMAT "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE "") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") diff --git a/build/bootloader/config/sdkconfig.h b/build/bootloader/config/sdkconfig.h new file mode 100644 index 0000000..9d63741 --- /dev/null +++ b/build/bootloader/config/sdkconfig.h @@ -0,0 +1,703 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header + */ +#pragma once +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_UART_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_GDMA_SUPPORTED 1 +#define CONFIG_SOC_UHCI_SUPPORTED 1 +#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_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_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 +#define CONFIG_SOC_CACHE_SUPPORT_WRAP 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_RISCV_COPROC_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_USB_OTG_SUPPORTED 1 +#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 +#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 +#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_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_PSRAM_DMA_CAPABLE 1 +#define CONFIG_SOC_XT_WDT_SUPPORTED 1 +#define CONFIG_SOC_I2S_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_SYSTIMER_SUPPORTED 1 +#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_HMAC_SUPPORTED 1 +#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_MEMPROT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_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_SIMD_INSTRUCTION_SUPPORTED 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_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_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_IIR_FILTER_NUM 2 +#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_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_APB_BACKUP_DMA 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED 1 +#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 +#define CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC 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_SIMD_PREFERRED_DATA_ALIGNMENT 16 +#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_AHB_GDMA_VERSION 1 +#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP 5 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 5 +#define CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 49 +#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 +#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1 +#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 +#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_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 +#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE 1 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 2 +#define CONFIG_SOC_I2C_FIFO_LEN 32 +#define CONFIG_SOC_I2C_CMD_REG_NUM 8 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 +#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 +#define CONFIG_SOC_I2C_SUPPORT_RTC 1 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 +#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 +#define CONFIG_SOC_I2S_NUM 2 +#define CONFIG_SOC_I2S_HW_VERSION_2 1 +#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM 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_I2S_SUPPORTS_TDM 1 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_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_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_MCPWM_GROUPS 2 +#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1 +#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3 +#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 +#define CONFIG_SOC_MMU_PERIPH_NUM 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_PCNT_GROUPS 1 +#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4 +#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2 +#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2 +#define CONFIG_SOC_RMT_GROUPS 1 +#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 4 +#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 4 +#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 +#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 +#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 +#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 +#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_RMT_SUPPORT_APB 1 +#define CONFIG_SOC_RMT_SUPPORT_DMA 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_LCD_RGB_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_BUSES 1 +#define CONFIG_SOC_LCD_RGB_PANELS 1 +#define CONFIG_SOC_LCD_I80_BUS_WIDTH 16 +#define CONFIG_SOC_LCD_RGB_DATA_WIDTH 16 +#define CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_SOC_LCDCAM_I80_NUM_BUSES 1 +#define CONFIG_SOC_LCDCAM_I80_BUS_WIDTH 16 +#define CONFIG_SOC_LCDCAM_RGB_NUM_PANELS 1 +#define CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH 16 +#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_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_LP_IO_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_MAX_CS_NUM 6 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 +#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 +#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 +#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1 +#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 +#define CONFIG_SOC_SPI_SUPPORT_OCT 1 +#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 +#define CONFIG_SOC_SPI_SCT_REG_NUM 14 +#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 +#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA +#define CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPIRAM_XIP_SUPPORTED 1 +#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 +#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 +#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 +#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 +#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 +#define CONFIG_SOC_TIMER_GROUPS 2 +#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2 +#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1 +#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4 +#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_SENSOR_NUM 15 +#define CONFIG_SOC_TOUCH_MIN_CHAN_ID 1 +#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 14 +#define CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK 1 +#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 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_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 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_TWAI_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_BRP_MAX 16384 +#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 +#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 +#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 +#define CONFIG_SOC_UHCI_NUM 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_GDMA 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA224 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_SHA_SUPPORT_SHA512_224 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_T 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_DMA 1 +#define CONFIG_SOC_AES_GDMA 1 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#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_WIFI_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 +#define CONFIG_SOC_PM_SUPPORT_TAGMEM_PD 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_MAC_BB_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 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_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_CLK_LP_FAST_SUPPORT_XTAL_D2 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_DIS_USB_JTAG 1 +#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 +#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 +#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 +#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 +#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 +#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_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192 +#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_AUTO_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 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_COEX_HW_PTI 1 +#define CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE 1 +#define CONFIG_SOC_SDMMC_USE_GPIO_MATRIX 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#define CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_SDMMC_DELAY_PHASE_NUM 4 +#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_WIFI_GCMP_SUPPORT 1 +#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_WIFI_PHY_NEEDS_USB_WORKAROUND 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BLE_50_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_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM 1 +#define CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX 16 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TOOLCHAIN "gcc" +#define CONFIG_IDF_TOOLCHAIN_GCC 1 +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ARCH "xtensa" +#define CONFIG_IDF_TARGET "esp32s3" +#define CONFIG_IDF_INIT_VERSION "5.5.1" +#define CONFIG_IDF_TARGET_ESP32S3 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0009 +#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 +#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 +#define CONFIG_APP_BUILD_BOOTLOADER 1 +#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 +#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1 +#define CONFIG_BOOTLOADER_PROJECT_VER 1 +#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_VERSION_1 1 +#define CONFIG_BOOTLOADER_LOG_VERSION 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 +#define CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN 1 +#define CONFIG_BOOTLOADER_LOG_MODE_TEXT 1 +#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1 +#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 +#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 +#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1 +#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 +#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1 +#define CONFIG_APP_COMPILE_TIME_DATE 1 +#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 +#define CONFIG_ESP_ROM_HAS_CRC_LE 1 +#define CONFIG_ESP_ROM_HAS_CRC_BE 1 +#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1 +#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1 +#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1 +#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 +#define CONFIG_ESP_ROM_USB_OTG_NUM 3 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 4 +#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1 +#define CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV 1 +#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 +#define CONFIG_ESP_ROM_HAS_HAL_WDT 1 +#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 +#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP 1 +#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME 1 +#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1 +#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 +#define CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG 1 +#define CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG 1 +#define CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_HAS_VERSION 1 +#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 +#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 +#define CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY 1 +#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 +#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" +#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_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_SINGLE_APP 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE 1 +#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 +#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS 1 +#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 256 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_ESP32S3_REV_MIN_0 1 +#define CONFIG_ESP32S3_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32S3_REV_MAX_FULL 99 +#define CONFIG_ESP_REV_MAX_FULL 99 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 199 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU 1 +#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 2000 +#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1 +#define CONFIG_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_GDMA_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_GDMA_OBJ_DRAM_SAFE 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_ESP_BROWNOUT_DET 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 7 +#define CONFIG_ESP_BROWNOUT_USE_INTR 1 +#define CONFIG_ESP_INTR_IN_IRAM 1 +#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 +#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_ESP32S3_TRACEMEM_RESERVE_DRAM 0x0 +#define CONFIG_ESP_SYSTEM_IN_IRAM 1 +#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 +#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 +#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 +#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1 +#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1 +#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 +#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 +#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0 +#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 +#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1 +#define CONFIG_ESP_CONSOLE_UART 1 +#define CONFIG_ESP_CONSOLE_UART_NUM 0 +#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 +#define CONFIG_ESP_INT_WDT 1 +#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 +#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1 +#define CONFIG_ESP_TASK_WDT_EN 1 +#define CONFIG_ESP_TASK_WDT_INIT 1 +#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1 +#define CONFIG_ESP_DEBUG_OCDAWARE 1 +#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1 +#define CONFIG_ESP_SYSTEM_BBPLL_RECALIB 1 +#define CONFIG_ESP_IPC_ENABLE 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1280 +#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1 +#define CONFIG_ESP_IPC_ISR_ENABLE 1 +#define CONFIG_FREERTOS_HZ 100 +#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 +#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 +#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +#define CONFIG_FREERTOS_USE_TIMERS 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" +#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 +#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048 +#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 +#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 +#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 +#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 +#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1 +#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 +#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 +#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 +#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1 +#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 +#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1 +#define CONFIG_FREERTOS_PORT 1 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 +#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 +#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 +#define CONFIG_FREERTOS_NUMBER_OF_CORES 2 +#define CONFIG_FREERTOS_IN_IRAM 1 +#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_WDT_USE_ROM_IMPL 1 +#define CONFIG_LOG_VERSION_1 1 +#define CONFIG_LOG_VERSION 1 +#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 +#define CONFIG_LOG_MAXIMUM_LEVEL 3 +#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 +#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_LOG_MODE_TEXT_EN 1 +#define CONFIG_LOG_MODE_TEXT 1 +#define CONFIG_LOG_IN_IRAM 1 +#define CONFIG_LIBC_NEWLIB 1 +#define CONFIG_LIBC_MISC_IN_IRAM 1 +#define CONFIG_LIBC_LOCKS_PLACE_IN_IRAM 1 +#define CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT 1 +#define CONFIG_MMU_PAGE_SIZE_64KB 1 +#define CONFIG_MMU_PAGE_MODE "64KB" +#define CONFIG_MMU_PAGE_SIZE 0x10000 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 +#define CONFIG_SPI_FLASH_HPM_AUTO 1 +#define CONFIG_SPI_FLASH_HPM_ON 1 +#define CONFIG_SPI_FLASH_HPM_DC_AUTO 1 +#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 +#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 +#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 +#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1 +#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1 +#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20 +#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1 +#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192 +#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED 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_ENABLE_ENCRYPTED_READ_WRITE 1 + +/* List of deprecated options */ +#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART +#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE +#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT +#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM +#define CONFIG_ESP32S3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_ESP32S3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#define CONFIG_ESP32S3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE +#define CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ +#define CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES +#define CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR CONFIG_ESP_BROWNOUT_USE_INTR +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT +#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1 +#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS +#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE +#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL +#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO +#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE +#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD +#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE +#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL +#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM +#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS +#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE +#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE +#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE +#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 +#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S +#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH +#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY +#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH diff --git a/build/bootloader/config/sdkconfig.json b/build/bootloader/config/sdkconfig.json new file mode 100644 index 0000000..f3d8698 --- /dev/null +++ b/build/bootloader/config/sdkconfig.json @@ -0,0 +1,823 @@ +{ + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "APP_COMPILE_TIME_DATE": true, + "APP_EXCLUDE_PROJECT_NAME_VAR": false, + "APP_EXCLUDE_PROJECT_VER_VAR": false, + "APP_NO_BLOBS": false, + "APP_PROJECT_VER_FROM_CONFIG": false, + "APP_REPRODUCIBLE_BUILD": false, + "APP_RETRIEVE_LEN_ELF_SHA": 9, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_COMPILE_TIME_DATE": true, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, + "BOOTLOADER_LOG_LEVEL": 3, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": true, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_MODE_TEXT": true, + "BOOTLOADER_LOG_MODE_TEXT_EN": true, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_LOG_VERSION": 1, + "BOOTLOADER_LOG_VERSION_1": true, + "BOOTLOADER_OFFSET_IN_FLASH": 0, + "BOOTLOADER_PROJECT_VER": 1, + "BOOTLOADER_REGION_PROTECTION_ENABLE": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BOOT_ROM_LOG_ALWAYS_OFF": false, + "BOOT_ROM_LOG_ALWAYS_ON": true, + "BOOT_ROM_LOG_ON_GPIO_HIGH": false, + "BOOT_ROM_LOG_ON_GPIO_LOW": false, + "COMPILER_ASSERT_NDEBUG_EVALUATE": true, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": true, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, + "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, + "COMPILER_OPTIMIZATION_DEBUG": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": true, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 256, + "EFUSE_VIRTUAL": false, + "ESP32S3_DATA_CACHE_16KB": false, + "ESP32S3_DATA_CACHE_32KB": true, + "ESP32S3_DATA_CACHE_4WAYS": false, + "ESP32S3_DATA_CACHE_64KB": false, + "ESP32S3_DATA_CACHE_8WAYS": true, + "ESP32S3_DATA_CACHE_LINE_16B": false, + "ESP32S3_DATA_CACHE_LINE_32B": true, + "ESP32S3_DATA_CACHE_LINE_64B": false, + "ESP32S3_DATA_CACHE_LINE_SIZE": 32, + "ESP32S3_DATA_CACHE_SIZE": 32768, + "ESP32S3_DCACHE_ASSOCIATED_WAYS": 8, + "ESP32S3_ICACHE_ASSOCIATED_WAYS": 8, + "ESP32S3_INSTRUCTION_CACHE_16KB": true, + "ESP32S3_INSTRUCTION_CACHE_32KB": false, + "ESP32S3_INSTRUCTION_CACHE_4WAYS": false, + "ESP32S3_INSTRUCTION_CACHE_8WAYS": true, + "ESP32S3_INSTRUCTION_CACHE_LINE_16B": false, + "ESP32S3_INSTRUCTION_CACHE_LINE_32B": true, + "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE": 32, + "ESP32S3_INSTRUCTION_CACHE_SIZE": 16384, + "ESP32S3_REV_MAX_FULL": 99, + "ESP32S3_REV_MIN_0": true, + "ESP32S3_REV_MIN_1": false, + "ESP32S3_REV_MIN_2": false, + "ESP32S3_REV_MIN_FULL": 0, + "ESP32S3_RTCDATA_IN_FAST_MEM": false, + "ESP32S3_TRACEMEM_RESERVE_DRAM": 0, + "ESP32S3_TRAX": false, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32S3_USE_FIXED_STATIC_RAM_SIZE": false, + "ESPTOOLPY_AFTER": "hard_reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BEFORE": "default_reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "80m", + "ESPTOOLPY_FLASHFREQ_120M": false, + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_40M": false, + "ESPTOOLPY_FLASHFREQ_80M": true, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_MODE_AUTO_DETECT": true, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESPTOOLPY_OCT_FLASH": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 7, + "ESP_BROWNOUT_DET_LVL_SEL_1": false, + "ESP_BROWNOUT_DET_LVL_SEL_2": false, + "ESP_BROWNOUT_DET_LVL_SEL_3": false, + "ESP_BROWNOUT_DET_LVL_SEL_4": false, + "ESP_BROWNOUT_DET_LVL_SEL_5": false, + "ESP_BROWNOUT_DET_LVL_SEL_6": false, + "ESP_BROWNOUT_DET_LVL_SEL_7": true, + "ESP_BROWNOUT_USE_INTR": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_SECONDARY_NONE": false, + "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, + "ESP_CONSOLE_UART": true, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_CONSOLE_USB_CDC": false, + "ESP_CONSOLE_USB_SERIAL_JTAG": false, + "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_240": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 199, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_INTR_IN_IRAM": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_ENABLE": true, + "ESP_IPC_ISR_ENABLE": true, + "ESP_IPC_TASK_STACK_SIZE": 1280, + "ESP_IPC_USES_CALLERS_PRIORITY": true, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, + "ESP_MAIN_TASK_AFFINITY": 0, + "ESP_MAIN_TASK_AFFINITY_CPU0": true, + "ESP_MAIN_TASK_AFFINITY_CPU1": false, + "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, + "ESP_MAIN_TASK_STACK_SIZE": 3584, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_PERIPH_CTRL_FUNC_IN_IRAM": true, + "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, + "ESP_REV_MAX_FULL": 99, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_CONSOLE_OUTPUT_SECONDARY": true, + "ESP_ROM_GET_CLK_FREQ": true, + "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG": true, + "ESP_ROM_HAS_CACHE_WRITEBACK_BUG": true, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true, + "ESP_ROM_HAS_ERASE_0_REGION_BUG": true, + "ESP_ROM_HAS_ETS_PRINTF_BUG": true, + "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG": true, + "ESP_ROM_HAS_HAL_WDT": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_LAYOUT_TABLE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, + "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, + "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, + "ESP_ROM_HAS_SPI_FLASH": true, + "ESP_ROM_HAS_SPI_FLASH_MMAP": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_VERSION": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": 3, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": 4, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, + "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": true, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, + "ESP_SYSTEM_BBPLL_RECALIB": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_IN_IRAM": true, + "ESP_SYSTEM_MEMPROT_FEATURE": true, + "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": true, + "ESP_SYSTEM_PANIC_PRINT_HALT": false, + "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, + "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, + "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, + "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, + "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, + "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, + "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, + "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, + "FREERTOS_CORETIMER_SYSTIMER_LVL1": true, + "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, + "FREERTOS_ENABLE_TASK_SNAPSHOT": true, + "FREERTOS_FPU_IN_ISR": false, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_IN_IRAM": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 2, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_SYSTIMER": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_SYSTIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_AFFINITY_CPU1": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GDMA_CTRL_FUNC_IN_IRAM": true, + "GDMA_ENABLE_DEBUG_LOG": false, + "GDMA_ISR_HANDLER_IN_IRAM": true, + "GDMA_ISR_IRAM_SAFE": false, + "GDMA_OBJ_DRAM_SAFE": true, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_WDT_USE_ROM_IMPL": true, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 9, + "IDF_INIT_VERSION": "5.5.1", + "IDF_TARGET": "esp32s3", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32S3": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": true, + "LIBC_NEWLIB_NANO_FORMAT": false, + "LIBC_TIME_SYSCALL_USE_HRT": false, + "LIBC_TIME_SYSCALL_USE_NONE": false, + "LIBC_TIME_SYSCALL_USE_RTC": false, + "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, + "LOG_COLORS": false, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_IN_IRAM": true, + "LOG_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_MODE_TEXT": true, + "LOG_MODE_TEXT_EN": true, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LOG_VERSION": 1, + "LOG_VERSION_1": true, + "LOG_VERSION_2": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "PARTITION_TABLE_CUSTOM": false, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions_singleapp.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": true, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PARTITION_TABLE_TWO_OTA_LARGE": false, + "RTC_CLK_CAL_CYCLES": 1024, + "RTC_CLK_SRC_EXT_CRYS": false, + "RTC_CLK_SRC_EXT_OSC": false, + "RTC_CLK_SRC_INT_8MD256": false, + "RTC_CLK_SRC_INT_RC": true, + "SECURE_BOOT": false, + "SECURE_BOOT_V2_PREFERRED": true, + "SECURE_BOOT_V2_RSA_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_ROM_DL_MODE_ENABLED": true, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ARBITER_SUPPORTED": true, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 12, + "SOC_ADC_DIGI_MONITOR_NUM": 2, + "SOC_ADC_DIGI_RESULT_BYTES": 4, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_MONITOR_SUPPORTED": true, + "SOC_ADC_PATT_LEN_MAX": 24, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 12, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, + "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_GDMA": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_AES_SUPPORT_DMA": true, + "SOC_AHB_GDMA_SUPPORTED": true, + "SOC_AHB_GDMA_SUPPORT_PSRAM": true, + "SOC_AHB_GDMA_VERSION": 1, + "SOC_APB_BACKUP_DMA": true, + "SOC_APPCPU_HAS_CLOCK_GATING_BUG": true, + "SOC_ASYNC_MEMCPY_SUPPORTED": true, + "SOC_BLE_50_SUPPORTED": true, + "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC": true, + "SOC_CACHE_FREEZE_SUPPORTED": true, + "SOC_CACHE_SUPPORT_WRAP": true, + "SOC_CACHE_WRITEBACK_SUPPORTED": true, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2": true, + "SOC_CLK_RC_FAST_D256_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, + "SOC_COEX_HW_PTI": true, + "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true, + "SOC_CPU_BREAKPOINTS_NUM": 2, + "SOC_CPU_CORES_NUM": 2, + "SOC_CPU_HAS_FPU": true, + "SOC_CPU_INTR_NUM": 32, + "SOC_CPU_WATCHPOINTS_NUM": 2, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64, + "SOC_DEDICATED_GPIO_SUPPORTED": true, + "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, + "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE": true, + "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DIG_SIGN_SUPPORTED": true, + "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, + "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, + "SOC_DS_SIGNATURE_MAX_BIT_LEN": 4096, + "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, + "SOC_EFUSE_DIS_DIRECT_BOOT": true, + "SOC_EFUSE_DIS_DOWNLOAD_DCACHE": true, + "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, + "SOC_EFUSE_DIS_ICACHE": true, + "SOC_EFUSE_DIS_USB_JTAG": true, + "SOC_EFUSE_HARD_DIS_JTAG": true, + "SOC_EFUSE_KEY_PURPOSE_FIELD": true, + "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, + "SOC_EFUSE_SOFT_DIS_JTAG": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EXTERNAL_COEX_LEADER_TX_LINE": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64, + "SOC_FLASH_ENCRYPTION_XTS_AES": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_256": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS": true, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GDMA_NUM_GROUPS_MAX": 1, + "SOC_GDMA_PAIRS_PER_GROUP": 5, + "SOC_GDMA_PAIRS_PER_GROUP_MAX": 5, + "SOC_GDMA_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_FILTER_CLK_SUPPORT_APB": true, + "SOC_GPIO_IN_RANGE_MAX": 48, + "SOC_GPIO_OUT_RANGE_MAX": 48, + "SOC_GPIO_PIN_COUNT": 49, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_SUPPORT_FORCE_HOLD": true, + "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, + "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, + "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 562949886312448, + "SOC_GPIO_VALID_GPIO_MASK": 562949953421311, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HMAC_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_HP_I2C_NUM": 2, + "SOC_I2C_CMD_REG_NUM": 8, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, + "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, + "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_HW_CLR_BUS": true, + "SOC_I2C_SUPPORT_RTC": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2C_SUPPORT_XTAL": true, + "SOC_I2S_HW_VERSION_2": true, + "SOC_I2S_NUM": 2, + "SOC_I2S_PDM_MAX_RX_LINES": 4, + "SOC_I2S_PDM_MAX_TX_LINES": 2, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_PCM": true, + "SOC_I2S_SUPPORTS_PCM2PDM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM2PCM": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_I2S_SUPPORTS_PLL_F160M": true, + "SOC_I2S_SUPPORTS_TDM": true, + "SOC_I2S_SUPPORTS_XTAL": true, + "SOC_LCDCAM_CAM_DATA_WIDTH_MAX": 16, + "SOC_LCDCAM_CAM_PERIPH_NUM": 1, + "SOC_LCDCAM_CAM_SUPPORTED": true, + "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV": true, + "SOC_LCDCAM_I80_BUS_WIDTH": 16, + "SOC_LCDCAM_I80_LCD_SUPPORTED": true, + "SOC_LCDCAM_I80_NUM_BUSES": 1, + "SOC_LCDCAM_RGB_DATA_WIDTH": 16, + "SOC_LCDCAM_RGB_LCD_SUPPORTED": true, + "SOC_LCDCAM_RGB_NUM_PANELS": 1, + "SOC_LCDCAM_SUPPORTED": true, + "SOC_LCD_I80_BUSES": 1, + "SOC_LCD_I80_BUS_WIDTH": 16, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LCD_RGB_DATA_WIDTH": 16, + "SOC_LCD_RGB_PANELS": 1, + "SOC_LCD_RGB_SUPPORTED": true, + "SOC_LCD_SUPPORT_RGB_YUV_CONV": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_FADE_STOP": true, + "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 14, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_IO_CLOCK_IS_INDEPENDENT": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_MAC_BB_PD_MEM_SIZE": 192, + "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, + "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP": true, + "SOC_MCPWM_COMPARATORS_PER_OPERATOR": 2, + "SOC_MCPWM_GENERATORS_PER_OPERATOR": 2, + "SOC_MCPWM_GPIO_FAULTS_PER_GROUP": 3, + "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP": 3, + "SOC_MCPWM_GROUPS": 2, + "SOC_MCPWM_OPERATORS_PER_GROUP": 3, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true, + "SOC_MCPWM_TIMERS_PER_GROUP": 3, + "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, + "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16, + "SOC_MEMPROT_MEM_ALIGN_SIZE": 256, + "SOC_MEMPROT_SUPPORTED": true, + "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM": true, + "SOC_MEMSPI_IS_INDEPENDENT": true, + "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MMU_PERIPH_NUM": 1, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 3, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MPU_SUPPORTED": true, + "SOC_PCNT_CHANNELS_PER_UNIT": 2, + "SOC_PCNT_GROUPS": 1, + "SOC_PCNT_SUPPORTED": true, + "SOC_PCNT_THRES_POINT_PER_UNIT": 2, + "SOC_PCNT_UNITS_PER_GROUP": 4, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_CPU_RETENTION_BY_RTCCNTL": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_BT_WAKEUP": true, + "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MAC_BB_PD": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_TAGMEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_PM_SUPPORT_WIFI_WAKEUP": true, + "SOC_PSRAM_DMA_CAPABLE": true, + "SOC_RISCV_COPROC_SUPPORTED": true, + "SOC_RMT_CHANNELS_PER_GROUP": 8, + "SOC_RMT_GROUPS": 1, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, + "SOC_RMT_RX_CANDIDATES_PER_GROUP": 4, + "SOC_RMT_SUPPORTED": true, + "SOC_RMT_SUPPORT_APB": true, + "SOC_RMT_SUPPORT_DMA": true, + "SOC_RMT_SUPPORT_RC_FAST": true, + "SOC_RMT_SUPPORT_RX_DEMODULATION": true, + "SOC_RMT_SUPPORT_RX_PINGPONG": true, + "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, + "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, + "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true, + "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, + "SOC_RMT_SUPPORT_TX_SYNCHRO": true, + "SOC_RMT_SUPPORT_XTAL": true, + "SOC_RMT_TX_CANDIDATES_PER_GROUP": 4, + "SOC_RNG_SUPPORTED": true, + "SOC_RSA_MAX_BIT_LEN": 4096, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 22, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128, + "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 549, + "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH": 128, + "SOC_RTC_FAST_MEM_SUPPORTED": true, + "SOC_RTC_MEM_SUPPORTED": true, + "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, + "SOC_RTC_SLOW_MEM_SUPPORTED": true, + "SOC_SDMMC_DELAY_PHASE_NUM": 4, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_SUPPORT_XTAL_CLOCK": true, + "SOC_SDMMC_USE_GPIO_MATRIX": true, + "SOC_SDM_CHANNELS_PER_GROUP": 8, + "SOC_SDM_CLK_SUPPORT_APB": true, + "SOC_SDM_GROUPS": 1, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V2_RSA": true, + "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, + "SOC_SHA_GDMA": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_DMA": true, + "SOC_SHA_SUPPORT_RESUME": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA224": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SHA_SUPPORT_SHA512_224": true, + "SOC_SHA_SUPPORT_SHA512_256": true, + "SOC_SHA_SUPPORT_SHA512_T": true, + "SOC_SIMD_INSTRUCTION_SUPPORTED": true, + "SOC_SIMD_PREFERRED_DATA_ALIGNMENT": 16, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPIRAM_XIP_SUPPORTED": true, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 6, + "SOC_SPI_MAX_PRE_DIVIDER": 16, + "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, + "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, + "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP": true, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE": true, + "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_TIMING_TUNING": true, + "SOC_SPI_MEM_SUPPORT_WRAP": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, + "SOC_SPI_SCT_BUFFER_NUM_MAX": true, + "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, + "SOC_SPI_SCT_REG_NUM": 14, + "SOC_SPI_SCT_SUPPORTED": true, + "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, + "SOC_SPI_SUPPORT_CD_SIG": true, + "SOC_SPI_SUPPORT_CLK_APB": true, + "SOC_SPI_SUPPORT_CLK_XTAL": true, + "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, + "SOC_SPI_SUPPORT_DDRCLK": true, + "SOC_SPI_SUPPORT_OCT": true, + "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, + "SOC_SUPPORTS_SECURE_DL_MODE": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, + "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, + "SOC_SYSTIMER_ALARM_NUM": 3, + "SOC_SYSTIMER_BIT_WIDTH_HI": 20, + "SOC_SYSTIMER_BIT_WIDTH_LO": 32, + "SOC_SYSTIMER_COUNTER_NUM": 2, + "SOC_SYSTIMER_FIXED_DIVIDER": true, + "SOC_SYSTIMER_INT_LEVEL": true, + "SOC_SYSTIMER_SUPPORTED": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, + "SOC_TEMP_SENSOR_SUPPORTED": true, + "SOC_TIMER_GROUPS": 2, + "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, + "SOC_TIMER_GROUP_SUPPORT_APB": true, + "SOC_TIMER_GROUP_SUPPORT_XTAL": true, + "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2, + "SOC_TIMER_GROUP_TOTAL_TIMERS": 4, + "SOC_TOUCH_MAX_CHAN_ID": 14, + "SOC_TOUCH_MIN_CHAN_ID": 1, + "SOC_TOUCH_PROXIMITY_CHANNEL_NUM": 3, + "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED": true, + "SOC_TOUCH_SAMPLE_CFG_NUM": 1, + "SOC_TOUCH_SENSOR_NUM": 15, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_SENSOR_VERSION": 2, + "SOC_TOUCH_SUPPORT_BENCHMARK": true, + "SOC_TOUCH_SUPPORT_DENOISE_CHAN": true, + "SOC_TOUCH_SUPPORT_PROX_SENSING": true, + "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true, + "SOC_TOUCH_SUPPORT_WATERPROOF": true, + "SOC_TWAI_BRP_MAX": 16384, + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CLK_SUPPORT_APB": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORTS_RX_STATUS": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HP_NUM": 3, + "SOC_UART_NUM": 3, + "SOC_UART_SUPPORTED": true, + "SOC_UART_SUPPORT_APB_CLK": true, + "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, + "SOC_UART_SUPPORT_RTC_CLK": true, + "SOC_UART_SUPPORT_WAKEUP_INT": true, + "SOC_UART_SUPPORT_XTAL_CLK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_UHCI_NUM": 1, + "SOC_UHCI_SUPPORTED": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_USB_OTG_PERIPH_NUM": 1, + "SOC_USB_OTG_SUPPORTED": true, + "SOC_USB_SERIAL_JTAG_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_FTM_SUPPORT": true, + "SOC_WIFI_GCMP_SUPPORT": true, + "SOC_WIFI_HW_TSF": true, + "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_40M": true, + "SOC_XT_WDT_SUPPORTED": true, + "SPI_FLASH_AUTO_SUSPEND": false, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND": false, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, + "SPI_FLASH_HPM_AUTO": true, + "SPI_FLASH_HPM_DC_AUTO": true, + "SPI_FLASH_HPM_DC_DISABLE": false, + "SPI_FLASH_HPM_DIS": false, + "SPI_FLASH_HPM_ENA": false, + "SPI_FLASH_HPM_ON": true, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_ROM_IMPL": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": true, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": true, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, + "SPI_FLASH_VERIFY_WRITE": false, + "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, + "SPI_FLASH_YIELD_DURING_ERASE": true, + "XTAL_FREQ": 40, + "XTAL_FREQ_40": true +} \ No newline at end of file diff --git a/build/bootloader/esp-idf/bootloader/cmake_install.cmake b/build/bootloader/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..31c2fa4 --- /dev/null +++ b/build/bootloader/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake b/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..3943ac3 --- /dev/null +++ b/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/cmake_install.cmake b/build/bootloader/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..9369d96 --- /dev/null +++ b/build/bootloader/esp-idf/cmake_install.cmake @@ -0,0 +1,144 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/cmake_install.cmake") +endif() + diff --git a/build/bootloader/esp-idf/efuse/cmake_install.cmake b/build/bootloader/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..f94c51c --- /dev/null +++ b/build/bootloader/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake b/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake new file mode 100644 index 0000000..240117e --- /dev/null +++ b/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake b/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake new file mode 100644 index 0000000..e872031 --- /dev/null +++ b/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_common/cmake_install.cmake b/build/bootloader/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..f9f3e2b --- /dev/null +++ b/build/bootloader/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..1b333b1 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") +endif() + diff --git a/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake new file mode 100644 index 0000000..4dd0330 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..e8edd13 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..c0c641a --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_rom/cmake_install.cmake b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..6b45b43 --- /dev/null +++ b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_security/cmake_install.cmake b/build/bootloader/esp-idf/esp_security/cmake_install.cmake new file mode 100644 index 0000000..1b38f7b --- /dev/null +++ b/build/bootloader/esp-idf/esp_security/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esp_system/cmake_install.cmake b/build/bootloader/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..53ee322 --- /dev/null +++ b/build/bootloader/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/esptool_py/cmake_install.cmake b/build/bootloader/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..a4cefe3 --- /dev/null +++ b/build/bootloader/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/freertos/cmake_install.cmake b/build/bootloader/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..797c49f --- /dev/null +++ b/build/bootloader/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/hal/cmake_install.cmake b/build/bootloader/esp-idf/hal/cmake_install.cmake new file mode 100644 index 0000000..5b624d6 --- /dev/null +++ b/build/bootloader/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/log/cmake_install.cmake b/build/bootloader/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..2de8efa --- /dev/null +++ b/build/bootloader/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/main/cmake_install.cmake b/build/bootloader/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..328a8b1 --- /dev/null +++ b/build/bootloader/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake b/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake new file mode 100644 index 0000000..56b8e9b --- /dev/null +++ b/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/newlib/cmake_install.cmake b/build/bootloader/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..b3b8f61 --- /dev/null +++ b/build/bootloader/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/newlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/partition_table/cmake_install.cmake b/build/bootloader/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..6b2d79f --- /dev/null +++ b/build/bootloader/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/soc/cmake_install.cmake b/build/bootloader/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..1994fae --- /dev/null +++ b/build/bootloader/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/spi_flash/cmake_install.cmake b/build/bootloader/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..b553f70 --- /dev/null +++ b/build/bootloader/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/esp-idf/xtensa/cmake_install.cmake b/build/bootloader/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..a20c06c --- /dev/null +++ b/build/bootloader/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/bootloader/gdbinit/connect b/build/bootloader/gdbinit/connect new file mode 100644 index 0000000..faa3857 --- /dev/null +++ b/build/bootloader/gdbinit/connect @@ -0,0 +1,7 @@ +# Connect to the default openocd-esp port and stop on app_main() +set remotetimeout 10 +target remote :3333 +monitor reset halt +maintenance flush register-cache +thbreak app_main +continue diff --git a/build/bootloader/gdbinit/gdbinit b/build/bootloader/gdbinit/gdbinit new file mode 100644 index 0000000..3065c8f --- /dev/null +++ b/build/bootloader/gdbinit/gdbinit @@ -0,0 +1,2 @@ +source E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/gdbinit/symbols +source E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/gdbinit/connect diff --git a/build/bootloader/gdbinit/prefix_map b/build/bootloader/gdbinit/prefix_map new file mode 100644 index 0000000..c7842ec --- /dev/null +++ b/build/bootloader/gdbinit/prefix_map @@ -0,0 +1 @@ +# There is no prefix map defined for the project. diff --git a/build/bootloader/gdbinit/py_extensions b/build/bootloader/gdbinit/py_extensions new file mode 100644 index 0000000..336f995 --- /dev/null +++ b/build/bootloader/gdbinit/py_extensions @@ -0,0 +1,7 @@ +# Add Python GDB extensions +python +try: + import freertos_gdb +except ModuleNotFoundError: + print('warning: python extension "freertos_gdb" not found.') +end diff --git a/build/bootloader/gdbinit/symbols b/build/bootloader/gdbinit/symbols new file mode 100644 index 0000000..13f698b --- /dev/null +++ b/build/bootloader/gdbinit/symbols @@ -0,0 +1,20 @@ +# Load esp32s3 ROM ELF symbols +define target hookpost-remote +set confirm off + # if $_streq((char *) 0x3ff194ad, "Mar 1 2021") + if (*(int*) 0x3ff194ad) == 0x2072614d && (*(int*) 0x3ff194b1) == 0x32203120 && (*(int*) 0x3ff194b5) == 0x313230 + add-symbol-file e:/QX_Tech/ESP32_Test/tools/esp-rom-elfs/20241011/esp32s3_rev0_rom.elf + else + echo Warning: Unknown esp32s3 ROM revision.\n + end +set confirm on +end + + +# Load bootloader symbols +set confirm off + # Bootloader elf was not found +set confirm on + +# Load application symbols +file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.elf diff --git a/build/bootloader/kconfigs.in b/build/bootloader/kconfigs.in new file mode 100644 index 0000000..969cac7 --- /dev/null +++ b/build/bootloader/kconfigs.in @@ -0,0 +1,12 @@ +source "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/log/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/Kconfig" \ No newline at end of file diff --git a/build/bootloader/kconfigs_projbuild.in b/build/bootloader/kconfigs_projbuild.in new file mode 100644 index 0000000..4668410 --- /dev/null +++ b/build/bootloader/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/build/bootloader/project_description.json b/build/bootloader/project_description.json new file mode 100644 index 0000000..62495cd --- /dev/null +++ b/build/bootloader/project_description.json @@ -0,0 +1,1677 @@ +{ + "version": "1.2", + "project_name": "bootloader", + "project_version": "v5.5.1", + "project_path": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject", + "idf_path": "D:/ESP_IDF/v5.5.1/esp-idf", + "build_dir": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", + "config_file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig", + "config_defaults": "", + "bootloader_elf": "", + "app_elf": "bootloader.elf", + "app_bin": "bootloader.bin", + "build_type": "flash_app", + "git_revision": "v5.5.1", + "target": "esp32s3", + "rev": "", + "min_rev": "0", + "max_rev": "99", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32s3-elf-", + "c_compiler": "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/log/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/soc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" + }, + "common_component_reqs": [ "log", "esp_rom", "esp_common", "esp_hw_support", "newlib", "xtensa" ], + "build_components" : [ "bootloader", "bootloader_support", "efuse", "esp_app_format", "esp_bootloader_format", "esp_common", "esp_hw_support", "esp_rom", "esp_security", "esp_system", "esptool_py", "freertos", "hal", "log", "main", "micro-ecc", "newlib", "partition_table", "soc", "spi_flash", "xtensa", "" ], + "build_component_paths" : [ "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system", "D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal", "D:/ESP_IDF/v5.5.1/esp-idf/components/log", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib", "D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash", "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa", "" ], + "build_component_info" : { + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader", + "type": "CONFIG_ONLY", + "lib": "__idf_bootloader", + "reqs": [], + "priv_reqs": [ "partition_table", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "bootloader_support": { + "alias": "idf::bootloader_support", + "target": "___idf_bootloader_support", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support", + "type": "LIBRARY", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32s3.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/bootloader_soc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/bootloader_esp32s3.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_panic.c" ], + "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/efuse/libefuse.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_fields.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_rtc_calib.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_utility.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c" ], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_common/libesp_common.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c" ], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/cpu.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/cpu_region_protect.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_sleep.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_time.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/chip_info.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S" ], + "include_dirs": [ "include", "esp32s3/include", "esp32s3/include/esp32s3", "esp32s3" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/esp_system/libesp_system.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_err.c" ], + "include_dirs": [] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py", + "type": "CONFIG_ONLY", + "lib": "__idf_esptool_py", + "reqs": [ "bootloader" ], + "priv_reqs": [ "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos", + "type": "CONFIG_ONLY", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/hal/libhal.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/hal_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/mpu_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/efuse_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/efuse_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/mmu_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/cache_hal.c" ], + "include_dirs": [ "platform_port/include", "esp32s3/include", "include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/log/liblog.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/noos/log_timestamp.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/noos/log_lock.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/noos/util.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/util.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_format_text.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_print.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log.c" ], + "include_dirs": [ "include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [ "bootloader", "bootloader_support" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/main/libmain.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c" ], + "include_dirs": [] + }, + "micro-ecc": { + "alias": "idf::micro-ecc", + "target": "___idf_micro-ecc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", + "type": "LIBRARY", + "lib": "__idf_micro-ecc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c" ], + "include_dirs": [ ".", "micro-ecc" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib", + "type": "CONFIG_ONLY", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "platform_include" ] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table", + "type": "CONFIG_ONLY", + "lib": "__idf_partition_table", + "reqs": [], + "priv_reqs": [ "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/soc/libsoc.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/lldesc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/dport_access_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/interrupts.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/gpio_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/uart_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/adc_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/dedic_gpio_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/gdma_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/spi_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/ledc_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/pcnt_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/rmt_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/sdm_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/i2s_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/i2c_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/temperature_sensor_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/timer_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/lcd_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/mcpwm_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/mpi_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/sdmmc_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/touch_sensor_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/twai_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/wdt_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/usb_dwc_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/rtc_io_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/cam_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/power_supply_periph.c" ], + "include_dirs": [ "include", "esp32s3", "esp32s3/include", "esp32s3/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c" ], + "include_dirs": [ "include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/esp-idf/xtensa/libxtensa.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/eri.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xt_trax.c" ], + "include_dirs": [ "esp32s3/include", "include", "deprecated_include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/app_trace", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/app_update", + "lib": "__idf_app_update", + "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], + "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader", + "lib": "__idf_bootloader", + "reqs": [], + "priv_reqs": [ "partition_table", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "bootloader_support": { + "alias": "idf::bootloader_support", + "target": "___idf_bootloader_support", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bt", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio", "esp_gdbstub" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/cmock", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/console", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_vfs_console" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/cxx", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "esp_system", "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/driver", + "lib": "__idf_driver", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp-tls", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32s3/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_coex": { + "alias": "idf::esp_coex", + "target": "___idf_esp_coex", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_coex", + "lib": "__idf_esp_coex", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_bitscrambler": { + "alias": "idf::esp_driver_bitscrambler", + "target": "___idf_esp_driver_bitscrambler", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [], + "priv_reqs": [ "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_cam": { + "alias": "idf::esp_driver_cam", + "target": "___idf_esp_driver_cam", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_cam", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_isp", + "lib": "__idf_esp_driver_isp", + "reqs": [ "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_jpeg": { + "alias": "idf::esp_driver_jpeg", + "target": "___idf_esp_driver_jpeg", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_jpeg", + "lib": "__idf_esp_driver_jpeg", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_driver_gpio" ], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ppa": { + "alias": "idf::esp_driver_ppa", + "target": "___idf_esp_driver_ppa", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ppa", + "lib": "__idf_esp_driver_ppa", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_touch_sens", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_twai": { + "alias": "idf::esp_driver_twai", + "target": "___idf_esp_driver_twai", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai", + "lib": "__idf_esp_driver_twai", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_eth", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_event", + "lib": "__idf_esp_event", + "reqs": [ "log", "esp_common", "freertos" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_gdbstub": { + "alias": "idf::esp_gdbstub", + "target": "___idf_esp_gdbstub", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_gdbstub", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "soc", "esp_rom", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hid", + "lib": "__idf_esp_hid", + "reqs": [ "esp_event", "bt" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_http_client": { + "alias": "idf::esp_http_client", + "target": "___idf_esp_http_client", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_http_client", + "lib": "__idf_esp_http_client", + "reqs": [ "lwip", "esp_event" ], + "priv_reqs": [ "tcp_transport", "http_parser" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_http_server": { + "alias": "idf::esp_http_server", + "target": "___idf_esp_http_server", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_http_server", + "lib": "__idf_esp_http_server", + "reqs": [ "http_parser", "esp_event" ], + "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_https_ota": { + "alias": "idf::esp_https_ota", + "target": "___idf_esp_https_ota", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_https_ota", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_bootloader_format", "esp_app_format", "esp_event", "esp_partition" ], + "priv_reqs": [ "log", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_https_server": { + "alias": "idf::esp_https_server", + "target": "___idf_esp_https_server", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_https_server", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_lcd", + "lib": "__idf_esp_lcd", + "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_local_ctrl", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c", "esp_netif" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_netif", + "lib": "__idf_esp_netif", + "reqs": [ "esp_event" ], + "priv_reqs": [ "esp_netif_stack" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif_stack": { + "alias": "idf::esp_netif_stack", + "target": "___idf_esp_netif_stack", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_netif_stack", + "lib": "__idf_esp_netif_stack", + "reqs": [ "lwip" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_partition": { + "alias": "idf::esp_partition", + "target": "___idf_esp_partition", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition", + "lib": "__idf_esp_partition", + "reqs": [ "spi_flash" ], + "priv_reqs": [ "bootloader_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_phy", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_psram", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include", "esp32s3/include/esp32s3", "esp32s3" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_tee": { + "alias": "idf::esp_tee", + "target": "___idf_esp_tee", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_tee", + "lib": "__idf_esp_tee", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_vfs_console": { + "alias": "idf::esp_vfs_console", + "target": "___idf_esp_vfs_console", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_vfs_console", + "lib": "__idf_esp_vfs_console", + "reqs": [], + "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_wifi", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/espcoredump", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py", + "lib": "__idf_esptool_py", + "reqs": [ "bootloader" ], + "priv_reqs": [ "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "fatfs": { + "alias": "idf::fatfs", + "target": "___idf_fatfs", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/fatfs", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/hal", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32s3/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/heap", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/http_parser", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + }, + "idf_test": { + "alias": "idf::idf_test", + "target": "___idf_idf_test", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/idf_test", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32s3" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/ieee802154", + "lib": "__idf_ieee802154", + "reqs": [ "esp_coex" ], + "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/json", + "lib": "__idf_json", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "cJSON" ] + }, + "linux": { + "alias": "idf::linux", + "target": "___idf_linux", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/linux", + "lib": "__idf_linux", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "cJSON" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/log", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/lwip", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "mqtt": { + "alias": "idf::mqtt", + "target": "___idf_mqtt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/mqtt", + "lib": "__idf_mqtt", + "reqs": [ "esp_event", "tcp_transport" ], + "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/nvs_flash", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "mbedtls" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/nvs_sec_provider", + "lib": "__idf_nvs_sec_provider", + "reqs": [], + "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "openthread": { + "alias": "idf::openthread", + "target": "___idf_openthread", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/openthread", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], + "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table", + "lib": "__idf_partition_table", + "reqs": [], + "priv_reqs": [ "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "perfmon": { + "alias": "idf::perfmon", + "target": "___idf_perfmon", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/perfmon", + "lib": "__idf_perfmon", + "reqs": [ "xtensa" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/protobuf-c", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "protobuf-c" ] + }, + "protocomm": { + "alias": "idf::protocomm", + "target": "___idf_protocomm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/protocomm", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] + }, + "pthread": { + "alias": "idf::pthread", + "target": "___idf_pthread", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "riscv": { + "alias": "idf::riscv", + "target": "___idf_riscv", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/riscv", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/rt", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc", + "lib": "__idf_sdmmc", + "reqs": [], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/soc", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3", "esp32s3/include", "esp32s3/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/spiffs", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/tcp_transport", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip", "esp_timer" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "touch_element": { + "alias": "idf::touch_element", + "target": "___idf_touch_element", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/touch_element", + "lib": "__idf_touch_element", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/ulp", + "lib": "__idf_ulp", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/unity", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "unity/src" ] + }, + "usb": { + "alias": "idf::usb", + "target": "___idf_usb", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/usb", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/vfs", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/wear_levelling", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wifi_provisioning": { + "alias": "idf::wifi_provisioning", + "target": "___idf_wifi_provisioning", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/wifi_provisioning", + "lib": "__idf_wifi_provisioning", + "reqs": [ "lwip", "protocomm" ], + "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/wpa_supplicant", + "lib": "__idf_wpa_supplicant", + "reqs": [], + "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32s3/include", "include", "deprecated_include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/main", + "lib": "__idf_main", + "reqs": [ "bootloader", "bootloader_support" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "micro-ecc": { + "alias": "idf::micro-ecc", + "target": "___idf_micro-ecc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", + "lib": "__idf_micro-ecc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ ".", "micro-ecc" ] + } + }, + "debug_prefix_map_gdbinit": "", + "gdbinit_files": { + "01_symbols": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/gdbinit/symbols", + "02_prefix_map": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/gdbinit/prefix_map", + "03_py_extensions": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/gdbinit/py_extensions", + "04_connect": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/gdbinit/connect" + }, + "debug_arguments_openocd": "-f board/esp32s3-builtin.cfg" +} diff --git a/build/build.ninja b/build/build.ninja new file mode 100644 index 0000000..9918afe --- /dev/null +++ b/build/build.ninja @@ -0,0 +1,13329 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.30 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: signal_generator +# 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 = E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/ + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + + +############################################# +# Utility command for save-defconfig + +build save-defconfig: phony CMakeFiles/save-defconfig + + +############################################# +# Utility command for bootloader + +build bootloader: phony CMakeFiles/bootloader CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-update esp-idf/partition_table/partition_table_bin + + +############################################# +# Utility command for gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp signal_generator.elf + + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app esp-idf/esptool_py/app_check_size gen_project_binary + + +############################################# +# Utility command for erase_flash + +build erase_flash: phony CMakeFiles/erase_flash + + +############################################# +# Utility command for merge-bin + +build merge-bin: phony CMakeFiles/merge-bin bootloader gen_project_binary + + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor signal_generator.elf + + +############################################# +# Utility command for flash + +build flash: phony CMakeFiles/flash app bootloader esp-idf/partition_table/partition_table_bin + + +############################################# +# Utility command for encrypted-flash + +build encrypted-flash: phony CMakeFiles/encrypted-flash + + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32s3.c + +# ============================================================================= +# Object build statements for EXECUTABLE target signal_generator.elf + + +############################################# +# Order-only phony target for signal_generator.elf + +build cmake_object_order_depends_target_signal_generator.elf: phony || __ldgen_output_sections.ld _project_elf_src cmake_object_order_depends_target___idf_driver cmake_object_order_depends_target___idf_esp_adc cmake_object_order_depends_target___idf_esp_driver_gptimer cmake_object_order_depends_target___idf_esp_driver_i2c cmake_object_order_depends_target___idf_esp_driver_i2s cmake_object_order_depends_target___idf_esp_driver_ledc cmake_object_order_depends_target___idf_esp_driver_mcpwm cmake_object_order_depends_target___idf_esp_driver_pcnt cmake_object_order_depends_target___idf_esp_driver_rmt cmake_object_order_depends_target___idf_esp_driver_sdm cmake_object_order_depends_target___idf_esp_driver_sdmmc cmake_object_order_depends_target___idf_esp_driver_sdspi cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_esp_driver_tsens cmake_object_order_depends_target___idf_esp_driver_twai cmake_object_order_depends_target___idf_esp_driver_uart cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag cmake_object_order_depends_target___idf_esp_ringbuf cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa project_elf_src_esp32s3.c + +build CMakeFiles/signal_generator.elf.dir/project_elf_src_esp32s3.c.obj: C_COMPILER__signal_generator.2eelf_unscanned_ E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/project_elf_src_esp32s3.c || cmake_object_order_depends_target_signal_generator.elf + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ + DEP_FILE = CMakeFiles\signal_generator.elf.dir\project_elf_src_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always + INCLUDES = -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main + OBJECT_DIR = CMakeFiles\signal_generator.elf.dir + OBJECT_FILE_DIR = CMakeFiles\signal_generator.elf.dir + TARGET_COMPILE_PDB = CMakeFiles\signal_generator.elf.dir\ + TARGET_PDB = signal_generator.elf.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target signal_generator.elf + + +############################################# +# Link the executable signal_generator.elf + +build signal_generator.elf: CXX_EXECUTABLE_LINKER__signal_generator.2eelf_ CMakeFiles/signal_generator.elf.dir/project_elf_src_esp32s3.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/esp_adc/libesp_adc.a esp-idf/main/libmain.a esp-idf/esp_adc/libesp_adc.a esp-idf/driver/libdriver.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_system/ld/memory.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.bt_funcs.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.libgcc.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.wdt.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.version.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_master.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_50.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_smp.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_dtm.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_test.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.ble_scan.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.libc.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld/esp32s3.rom.newlib.ld D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/ld/esp32s3.peripherals.ld esp-idf/esp_system/ld/sections.ld || __ldgen_output_sections.ld _project_elf_src esp-idf/driver/libdriver.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/main/libmain.a esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + LINK_FLAGS = -nostartfiles -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32S3=0 -Wl,--Map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32s3.peripherals.ld -T esp32s3.rom.ld -T esp32s3.rom.api.ld -T esp32s3.rom.bt_funcs.ld -T esp32s3.rom.libgcc.ld -T esp32s3.rom.wdt.ld -T esp32s3.rom.version.ld -T esp32s3.rom.ble_master.ld -T esp32s3.rom.ble_50.ld -T esp32s3.rom.ble_smp.ld -T esp32s3.rom.ble_dtm.ld -T esp32s3.rom.ble_test.ld -T esp32s3.rom.ble_scan.ld -T esp32s3.rom.libc.ld -T esp32s3.rom.newlib.ld -T memory.ld -T sections.ld + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/esp_adc/libesp_adc.a esp-idf/main/libmain.a esp-idf/esp_adc/libesp_adc.a esp-idf/driver/libdriver.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_ringbuf/libesp_ringbuf.a -u usb_serial_jtag_connection_monitor_include esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/xtensa/libxtensa.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/libxt_hal.a -u esp_timer_init_include_func -u esp_app_desc -u esp_efuse_startup_include_func -u ld_include_highint_hdl -u start_app -u start_app_other_cores -u __ubsan_include -u esp_system_include_startup_funcs -Wl,--wrap=longjmp -u __assert_func -u esp_security_init_include_impl -u esp_sleep_gpio_include -Wl,--undefined=FreeRTOS_openocd_params -u app_main -lc -lm -u esp_libc_include_heap_impl -u esp_libc_include_reent_syscalls_impl -u esp_libc_include_syscalls_impl -u esp_libc_include_pthread_impl -u esp_libc_include_assert_impl -u esp_libc_include_getentropy_impl -u esp_libc_include_init_funcs -u esp_libc_init_funcs -u pthread_include_pthread_impl -u pthread_include_pthread_cond_var_impl -u pthread_include_pthread_local_storage_impl -u pthread_include_pthread_rwlock_impl -u pthread_include_pthread_semaphore_impl -Wl,--wrap=__register_frame_info_bases -Wl,--wrap=__register_frame_info -Wl,--wrap=__register_frame -Wl,--wrap=__register_frame_info_table_bases -Wl,--wrap=__register_frame_info_table -Wl,--wrap=__register_frame_table -Wl,--wrap=__deregister_frame_info_bases -Wl,--wrap=__deregister_frame_info -Wl,--wrap=_Unwind_Find_FDE -Wl,--wrap=_Unwind_GetGR -Wl,--wrap=_Unwind_GetCFA -Wl,--wrap=_Unwind_GetIP -Wl,--wrap=_Unwind_GetIPInfo -Wl,--wrap=_Unwind_GetRegionStart -Wl,--wrap=_Unwind_GetDataRelBase -Wl,--wrap=_Unwind_GetTextRelBase -Wl,--wrap=_Unwind_SetIP -Wl,--wrap=_Unwind_SetGR -Wl,--wrap=_Unwind_GetLanguageSpecificData -Wl,--wrap=_Unwind_FindEnclosingFunction -Wl,--wrap=_Unwind_Resume -Wl,--wrap=_Unwind_RaiseException -Wl,--wrap=_Unwind_DeleteException -Wl,--wrap=_Unwind_ForcedUnwind -Wl,--wrap=_Unwind_Resume_or_Rethrow -Wl,--wrap=_Unwind_Backtrace -Wl,--wrap=__cxa_call_unexpected -Wl,--wrap=__gxx_personality_v0 -Wl,--wrap=__cxa_throw -Wl,--wrap=__cxa_allocate_exception -lstdc++ esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a -u __cxa_guard_dummy -u __cxx_init_dummy -lgcc esp-idf/cxx/libcxx.a -u __cxx_fatal_exception + LINK_PATH = -LD:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/ld -LD:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/ld -LE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld + OBJECT_DIR = CMakeFiles\signal_generator.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\signal_generator.elf.dir\ + TARGET_FILE = signal_generator.elf + TARGET_PDB = signal_generator.elf.pdb + RSP_FILE = CMakeFiles\signal_generator.elf.rsp + + +############################################# +# Utility command for size + +build size: phony CMakeFiles/size + + +############################################# +# Utility command for size-files + +build size-files: phony CMakeFiles/size-files + + +############################################# +# Utility command for size-components + +build size-components: phony CMakeFiles/size-components + + +############################################# +# Utility command for dfu + +build dfu: phony CMakeFiles/dfu bootloader gen_project_binary + + +############################################# +# Utility command for dfu-list + +build dfu-list: phony CMakeFiles/dfu-list + + +############################################# +# Utility command for dfu-flash + +build dfu-flash: phony CMakeFiles/dfu-flash + + +############################################# +# Utility command for uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# Utility command for __ldgen_output_sections.ld + +build __ldgen_output_sections.ld: phony CMakeFiles/__ldgen_output_sections.ld esp-idf/esp_system/ld/sections.ld esp-idf/driver/libdriver.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/main/libmain.a esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\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 = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + + +############################################# +# Custom command for CMakeFiles\menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config.env && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --sdkconfig-rename D:/ESP_IDF/v5.5.1/esp-idf/sdkconfig.rename --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig --defaults E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig.defaults --env IDF_MINIMAL_BUILD=y --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config.env --env IDF_TARGET=esp32s3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --dont-write-deprecated --output config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/check_term.py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/kconfigs_projbuild.in KCONFIG_CONFIG=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig IDF_TARGET=esp32s3 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.5.1 IDF_MINIMAL_BUILD=y e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe -m menuconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --sdkconfig-rename D:/ESP_IDF/v5.5.1/esp-idf/sdkconfig.rename --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig --defaults E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig.defaults --env IDF_MINIMAL_BUILD=y --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config.env --env IDF_TARGET=esp32s3 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --output config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config.env && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfserver --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config.env --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --sdkconfig-rename D:/ESP_IDF/v5.5.1/esp-idf/sdkconfig.rename --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config.env && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --sdkconfig-rename D:/ESP_IDF/v5.5.1/esp-idf/sdkconfig.rename --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig --defaults E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig.defaults --env IDF_MINIMAL_BUILD=y --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config.env --dont-write-deprecated --output savedefconfig E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig.defaults" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\bootloader + +build CMakeFiles/bootloader | ${cmake_ninja_workdir}CMakeFiles/bootloader: phony CMakeFiles/bootloader-complete || esp-idf/partition_table/partition_table_bin + + +############################################# +# Custom command for CMakeFiles\bootloader-complete + +build CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done | ${cmake_ninja_workdir}CMakeFiles/bootloader-complete ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-done: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-update bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader-prefix/src/bootloader-stamp/bootloader-install || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E make_directory E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/CMakeFiles/bootloader-complete && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-done" + DESC = Completed 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-build + +build bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-build ${cmake_ninja_workdir}bootloader/bootloader.elf ${cmake_ninja_workdir}bootloader/bootloader.bin ${cmake_ninja_workdir}bootloader/bootloader.map: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-configure || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --build ." + DESC = Performing build step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-configure + +build bootloader-prefix/src/bootloader-stamp/bootloader-configure | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-configure: CUSTOM_COMMAND bootloader-prefix/tmp/bootloader-cfgcmd.txt bootloader-prefix/src/bootloader-stamp/bootloader-patch || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DSDKCONFIG=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig -DIDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -DIDF_TARGET=esp32s3 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe -DEXTRA_COMPONENT_DIRS=D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader -DPROJECT_SOURCE_DIR=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator -DIGNORE_EXTRA_COMPONENT= -GNinja -S D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject -B E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure" + DESC = Performing configure step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-download + +build bootloader-prefix/src/bootloader-stamp/bootloader-download | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-download: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt bootloader-prefix/src/bootloader-stamp/bootloader-mkdir || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-download" + DESC = No download step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-install + +build bootloader-prefix/src/bootloader-stamp/bootloader-install | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-install: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-build || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo_append" + DESC = No install step for 'bootloader' + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-mkdir + +build bootloader-prefix/src/bootloader-stamp/bootloader-mkdir | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-mkdir: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -Dcfgdir= -P E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir" + DESC = Creating directories for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-patch + +build bootloader-prefix/src/bootloader-stamp/bootloader-patch | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-patch: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-update || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch" + DESC = No patch step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-update + +build bootloader-prefix/src/bootloader-stamp/bootloader-update | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-update: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-download || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader-prefix/src/bootloader-stamp/bootloader-update" + DESC = No update step for 'bootloader' + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\gen_project_binary + +build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a signal_generator.elf + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND signal_generator.elf || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a signal_generator.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32s3 elf2image --flash_mode dio --flash_freq 80m --flash_size 2MB --elf-sha256-offset 0xb0 --min-rev-full 0 --max-rev-full 99 -o E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.bin E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.elf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "Generated E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.bin" && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E md5sum E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.bin > E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/.bin_timestamp" + DESC = Generating binary image from built executable + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\app + +build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esptool_py/app_check_size esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary signal_generator.elf + + +############################################# +# Custom command for CMakeFiles\erase_flash + +build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\merge-bin + +build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src bootloader esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary signal_generator.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=merge_bin;-o;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/merged-binary.bin;@E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/flash_args -D WORKING_DIRECTORY=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a signal_generator.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;xtensa-esp32s3-elf-;;--target;esp32s3;;--revision;0;;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.elf -D WORKING_DIRECTORY=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\flash + +build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src app bootloader esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esptool_py/app_check_size esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary signal_generator.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build -P D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\encrypted-flash + +build CMakeFiles/encrypted-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-flash requires" && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Phony custom command for CMakeFiles\_project_elf_src + +build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32s3.c + + +############################################# +# Custom command for project_elf_src_esp32s3.c + +build project_elf_src_esp32s3.c | ${cmake_ninja_workdir}project_elf_src_esp32s3.c: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E touch E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/project_elf_src_esp32s3.c" + DESC = Generating project_elf_src_esp32s3.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND signal_generator.map + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.map -D OUTPUT_JSON= -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-files + +build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND signal_generator.map + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.map -D OUTPUT_JSON= -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-components + +build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND signal_generator.map + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.map -D OUTPUT_JSON= -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu + +build CMakeFiles/dfu | ${cmake_ninja_workdir}CMakeFiles/dfu: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src bootloader esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary signal_generator.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/mkdfu.py write -o E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/dfu.bin --json E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/flasher_args.json --pid 9 --flash-size 2MB" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-list + +build CMakeFiles/dfu-list | ${cmake_ninja_workdir}CMakeFiles/dfu-list: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D ESP_DFU_LIST="1" -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_dfu_util.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\dfu-flash + +build CMakeFiles/dfu-flash | ${cmake_ninja_workdir}CMakeFiles/dfu-flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D ESP_DFU_BIN="E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/dfu.bin" -D ESP_DFU_PID="9" -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_dfu_util.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D UF2_CMD=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;D:/ESP_IDF/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32s3 -D UF2_ARGS=--json;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/flasher_args.json;-o;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/uf2.bin -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D UF2_CMD=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;D:/ESP_IDF/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32s3 -D UF2_ARGS=--json;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/flasher_args.json;-o;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/uf2-app.bin;--bin;app -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\__ldgen_output_sections.ld + +build CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Custom command for esp-idf\esp_system\ld\sections.ld + +build esp-idf/esp_system/ld/sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld: CUSTOM_COMMAND esp-idf/esp_system/ld/sections.ld.in D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/app.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/common.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/soc.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/log/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/linker_common.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/newlib.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/system_libs.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/linker.lf D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/xtensa/libxtensa.a esp-idf/spi_flash/libspi_flash.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/esp_security/libesp_security.a esp-idf/efuse/libefuse.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_security/libesp_security.a esp-idf/pthread/libpthread.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_adc/libesp_adc.a esp-idf/driver/libdriver.a esp-idf/main/libmain.a esp-idf/esp_adc/libesp_adc.a E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/tools/ldgen/ldgen.py --config E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig --fragments-list D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/app.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/common.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/soc.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/log/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/heap/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/soc/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/linker_common.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/newlib.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/system_libs.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/linker.lf;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/linker.lf --input E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/sections.ld.in --output E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/sections.ld --kconfig D:/ESP_IDF/v5.5.1/esp-idf/Kconfig --env-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config.env --libraries-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/ldgen_libraries --objdump E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe" + DESC = Generating esp-idf/esp_system/ld/sections.ld + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/install: phony esp-idf/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/install/local: phony esp-idf/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/install/strip: phony esp-idf/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Order-only phony target for __idf_xtensa + +build cmake_object_order_depends_target___idf_xtensa: phony || cmake_object_order_depends_target___idf_esp_driver_gpio + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\eri.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xt_trax.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj: ASM_COMPILER____idf_xtensa_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xtensa_context.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_context.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj: ASM_COMPILER____idf_xtensa_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xtensa_intr_asm.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_intr_asm.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj: C_COMPILER____idf_xtensa_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xtensa_intr.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_intr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj: ASM_COMPILER____idf_xtensa_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xtensa_vectors.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_vectors.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Link the static library esp-idf\xtensa\libxtensa.a + +build esp-idf/xtensa/libxtensa.a: C_STATIC_LIBRARY_LINKER____idf_xtensa_ esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj || esp-idf/esp_driver_gpio/libesp_driver_gpio.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_FILE = esp-idf\xtensa\libxtensa.a + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\xtensa && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/xtensa/edit_cache: phony esp-idf/xtensa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\xtensa && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/xtensa/rebuild_cache: phony esp-idf/xtensa/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/xtensa/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/xtensa/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\xtensa && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/xtensa/install: phony esp-idf/xtensa/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/xtensa/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\xtensa && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/xtensa/install/local: phony esp-idf/xtensa/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/xtensa/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\xtensa && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/xtensa/install/strip: phony esp-idf/xtensa/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gpio + + +############################################# +# Order-only phony target for __idf_esp_driver_gpio + +build cmake_object_order_depends_target___idf_esp_driver_gpio: phony || cmake_object_order_depends_target___idf_esp_timer + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_glitch_filter_ops.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\rtc_io.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\dedic_gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_pin_glitch_filter.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gpio + + +############################################# +# Link the static library esp-idf\esp_driver_gpio\libesp_driver_gpio.a + +build esp-idf/esp_driver_gpio/libesp_driver_gpio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_ esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj || esp-idf/esp_timer/libesp_timer.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_FILE = esp-idf\esp_driver_gpio\libesp_driver_gpio.a + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gpio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/edit_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gpio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/rebuild_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_gpio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_gpio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gpio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install: phony esp-idf/esp_driver_gpio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_gpio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gpio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install/local: phony esp-idf/esp_driver_gpio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gpio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install/strip: phony esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_timer + + +############################################# +# Order-only phony target for __idf_esp_timer + +build cmake_object_order_depends_target___idf_esp_timer: phony || cmake_object_order_depends_target___idf_esp_pm + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj: C_COMPILER____idf_esp_timer_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_init.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\ets_timer_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\system_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj: C_COMPILER____idf_esp_timer_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_systimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_timer + + +############################################# +# Link the static library esp-idf\esp_timer\libesp_timer.a + +build esp-idf/esp_timer/libesp_timer.a: C_STATIC_LIBRARY_LINKER____idf_esp_timer_ esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj || esp-idf/esp_pm/libesp_pm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_FILE = esp-idf\esp_timer\libesp_timer.a + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_timer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_timer/edit_cache: phony esp-idf/esp_timer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_timer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_timer/rebuild_cache: phony esp-idf/esp_timer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_timer/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_timer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_timer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_timer/install: phony esp-idf/esp_timer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_timer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_timer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_timer/install/local: phony esp-idf/esp_timer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_timer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_timer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_timer/install/strip: phony esp-idf/esp_timer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_pm + + +############################################# +# Order-only phony target for __idf_esp_pm + +build cmake_object_order_depends_target___idf_esp_pm: phony || cmake_object_order_depends_target___idf_mbedtls + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj: C_COMPILER____idf_esp_pm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_locks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_trace.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_impl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_pm + + +############################################# +# Link the static library esp-idf\esp_pm\libesp_pm.a + +build esp-idf/esp_pm/libesp_pm.a: C_STATIC_LIBRARY_LINKER____idf_esp_pm_ esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj || esp-idf/mbedtls/libmbedtls.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_FILE = esp-idf\esp_pm\libesp_pm.a + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_pm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_pm/edit_cache: phony esp-idf/esp_pm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_pm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_pm/rebuild_cache: phony esp-idf/esp_pm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_pm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_pm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_pm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_pm/install: phony esp-idf/esp_pm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_pm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_pm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_pm/install/local: phony esp-idf/esp_pm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_pm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_pm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_pm/install/strip: phony esp-idf/esp_pm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_mbedtls + + +############################################# +# Order-only phony target for __idf_mbedtls + +build cmake_object_order_depends_target___idf_mbedtls: phony || cmake_object_order_depends_target_everest esp-idf/mbedtls/x509_crt_bundle x509_crt_bundle.S + +build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj: C_COMPILER____idf_mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle\esp_crt_bundle.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + +build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_unscanned_ E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__\__\x509_crt_bundle.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__\__ + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_mbedtls + + +############################################# +# Link the static library esp-idf\mbedtls\libmbedtls.a + +build esp-idf/mbedtls/libmbedtls.a: C_STATIC_LIBRARY_LINKER____idf_mbedtls_ esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj || esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_FILE = esp-idf\mbedtls\libmbedtls.a + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + + +############################################# +# Utility command for custom_bundle + +build esp-idf/mbedtls/custom_bundle: phony + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/edit_cache: phony esp-idf/mbedtls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/rebuild_cache: phony esp-idf/mbedtls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/install: phony esp-idf/mbedtls/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/install/local: phony esp-idf/mbedtls/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/install/strip: phony esp-idf/mbedtls/CMakeFiles/install/strip.util + + +############################################# +# Custom command for x509_crt_bundle.S + +build x509_crt_bundle.S | ${cmake_ninja_workdir}x509_crt_bundle.S: CUSTOM_COMMAND esp-idf/mbedtls/x509_crt_bundle D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D DATA_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake" + DESC = Generating ../../x509_crt_bundle.S + restat = 1 + + +############################################# +# Custom command for esp-idf\mbedtls\x509_crt_bundle + +build esp-idf/mbedtls/x509_crt_bundle | ${cmake_ninja_workdir}esp-idf/mbedtls/x509_crt_bundle: CUSTOM_COMMAND || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --input D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_all.pem D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_local.pem -q --max-certs 200" + DESC = Generating x509_crt_bundle + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for apidoc + +build esp-idf/mbedtls/mbedtls/apidoc: phony esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/edit_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/rebuild_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install/local: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install/strip: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\mbedtls\mbedtls\CMakeFiles\apidoc + +build esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\mbedtls\doxygen && doxygen mbedtls.doxyfile" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\include && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/edit_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\include && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/rebuild_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/include/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\include && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\include && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install/local: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\include && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install/strip: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/install: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target everest + + +############################################# +# Order-only phony target for everest + +build cmake_object_order_depends_target_everest: phony || cmake_object_order_depends_target_p256m + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj: C_COMPILER__everest_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\everest.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj: C_COMPILER__everest_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\x25519.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj: C_COMPILER__everest_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\Hacl_Curve25519_joined.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target everest + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a: CXX_STATIC_LIBRARY_LINKER__everest_ esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj || esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/install: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target p256m + + +############################################# +# Order-only phony target for p256m + +build cmake_object_order_depends_target_p256m: phony || cmake_object_order_depends_target_mbedcrypto + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj: C_COMPILER__p256m_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c || cmake_object_order_depends_target_p256m + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m_driver_entrypoints.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj: C_COMPILER__p256m_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c || cmake_object_order_depends_target_p256m + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m\p256-m.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target p256m + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a: CXX_STATIC_LIBRARY_LINKER__p256m_ esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedcrypto + + +############################################# +# Order-only phony target for mbedcrypto + +build cmake_object_order_depends_target_mbedcrypto: phony || cmake_object_order_depends_target_mbedx509 + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aesni.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesce.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aesce.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aria.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\asn1parse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\asn1write.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\base64.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_core.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_mod.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_mod_raw.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\block_cipher.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\camellia.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ccm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\chacha20.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\chachapoly.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cipher.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cipher_wrap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\constant_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cmac.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ctr_drbg.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\des.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\dhm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecdh.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecdsa.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecjpake.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecp_curves.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecp_curves_new.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\entropy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\entropy_poll.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\error.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\gcm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\hkdf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\hmac_drbg.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lmots.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\lmots.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lms.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\lms.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\md.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\md5.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\memory_buffer_alloc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\nist_kw.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\oid.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\padlock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pk_ecc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pk_wrap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkcs12.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkcs5.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkparse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkwrite.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\platform.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\platform_util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\poly1305.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_aead.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_cipher.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_client.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_driver_wrappers_no_static.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_ecp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_ffdh.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_hash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_mac.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_pake.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_rsa.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_se.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_slot_management.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_storage.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_its_file.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ripemd160.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\rsa.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\rsa_alt_helpers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha256.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha512.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha3.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\threading.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\timing.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\version.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\version_features.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha_gdma_impl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes_gdma_impl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes_dma_core.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\crypto_shared_gdma\esp_crypto_shared_gdma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\crypto_shared_gdma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_hardware.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_mem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_timing.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_xts.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\dma + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\esp_sha.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core\sha.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_rsa_sign_alt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_ds + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_rsa_dec_alt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_ds + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_ds_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_ds + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\bignum\esp_bignum.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\bignum + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\bignum\bignum_alt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\bignum + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha256.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha512.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\sha\core + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_gcm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\md\esp_md.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\md + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedcrypto + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a + +build esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a: CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb + RSP_FILE = CMakeFiles\mbedcrypto.rsp + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedx509 + + +############################################# +# Order-only phony target for mbedx509 + +build cmake_object_order_depends_target_mbedx509: phony || cmake_object_order_depends_target_mbedtls + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\pkcs7.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_create.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_crl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_crt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_csr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write_crt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write_csr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedx509 + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedx509.a + +build esp-idf/mbedtls/mbedtls/library/libmbedx509.a: CXX_STATIC_LIBRARY_LINKER__mbedx509_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedtls.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedx509.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedtls + + +############################################# +# Order-only phony target for mbedtls + +build cmake_object_order_depends_target_mbedtls: phony || cmake_object_order_depends_target___idf_esp_app_format + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\debug.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mps_reader.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mps_trace.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_cache.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_ciphersuites.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_client.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_cookie.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_debug_helpers_generated.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_msg.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_ticket.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls12_client.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls12_server.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_keys.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_server.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_client.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_generic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\mbedtls_debug.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj: C_COMPILER__mbedtls_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port\esp_platform_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\D_\ESP_IDF\v5.5.1\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedtls + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedtls.a + +build esp-idf/mbedtls/mbedtls/library/libmbedtls.a: CXX_STATIC_LIBRARY_LINKER__mbedtls_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj || esp-idf/esp_app_format/libesp_app_format.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedtls.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + + +############################################# +# Utility command for lib + +build esp-idf/mbedtls/mbedtls/library/lib: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib esp-idf/xtensa/libxtensa.a + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\library && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/edit_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\library && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/rebuild_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/library/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\library && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\library && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install/local: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\library && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install/strip: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\mbedtls\mbedtls\library\CMakeFiles\lib + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\pkgconfig && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/edit_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\pkgconfig && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/rebuild_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/pkgconfig/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\pkgconfig && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\pkgconfig && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install/local: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\mbedtls\mbedtls\pkgconfig && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install/strip: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for bootloader-flash + +build esp-idf/bootloader/bootloader-flash: phony esp-idf/bootloader/CMakeFiles/bootloader-flash bootloader + + +############################################# +# Utility command for encrypted-bootloader-flash + +build esp-idf/bootloader/encrypted-bootloader-flash: phony esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/bootloader/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/bootloader/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/bootloader/install: phony esp-idf/bootloader/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/bootloader/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/bootloader/install/local: phony esp-idf/bootloader/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/bootloader/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bootloader/install/strip: phony esp-idf/bootloader/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\bootloader\CMakeFiles\bootloader-flash + +build esp-idf/bootloader/CMakeFiles/bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/bootloader-flash: CUSTOM_COMMAND || bootloader esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@bootloader-flash_args -D WORKING_DIRECTORY=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build -P D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\bootloader\CMakeFiles\encrypted-bootloader-flash + +build esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-bootloader-flash requires" && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for app-flash + +build esp-idf/esptool_py/app-flash: phony esp-idf/esptool_py/CMakeFiles/app-flash app + + +############################################# +# Utility command for encrypted-app-flash + +build esp-idf/esptool_py/encrypted-app-flash: phony esp-idf/esptool_py/CMakeFiles/encrypted-app-flash + + +############################################# +# Utility command for app_check_size + +build esp-idf/esptool_py/app_check_size: phony esp-idf/esptool_py/CMakeFiles/app_check_size esp-idf/partition_table/partition_table_bin gen_project_binary + + +############################################# +# Utility command for edit_cache + +build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esptool_py/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esptool_py/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esptool_py/install: phony esp-idf/esptool_py/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esptool_py/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esptool_py/install/local: phony esp-idf/esptool_py/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esptool_py/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esptool_py/install/strip: phony esp-idf/esptool_py/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\app-flash + +build esp-idf/esptool_py/CMakeFiles/app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src app esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esptool_py/app_check_size esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary signal_generator.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@app-flash_args -D WORKING_DIRECTORY=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build -P D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\encrypted-app-flash + +build esp-idf/esptool_py/CMakeFiles/encrypted-app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/encrypted-app-flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esptool_py && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-app-flash requires" && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Custom command for esp-idf\esptool_py\CMakeFiles\app_check_size + +build esp-idf/esptool_py/CMakeFiles/app_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app_check_size: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/xtensa/libxtensa.a gen_project_binary signal_generator.elf + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esptool_py && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/partition_table/partition-table.bin E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for partition_table_bin + +build esp-idf/partition_table/partition_table_bin: phony esp-idf/partition_table/CMakeFiles/partition_table_bin partition_table/partition-table.bin + + +############################################# +# Utility command for partition-table + +build esp-idf/partition_table/partition-table: phony esp-idf/partition_table/CMakeFiles/partition-table esp-idf/partition_table/partition_table_bin + + +############################################# +# Utility command for partition_table + +build esp-idf/partition_table/partition_table: phony esp-idf/partition_table/CMakeFiles/partition_table esp-idf/partition_table/partition-table + + +############################################# +# Utility command for partition-table-flash + +build esp-idf/partition_table/partition-table-flash: phony esp-idf/partition_table/CMakeFiles/partition-table-flash + + +############################################# +# Utility command for encrypted-partition-table-flash + +build esp-idf/partition_table/encrypted-partition-table-flash: phony esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash + + +############################################# +# Utility command for partition_table-flash + +build esp-idf/partition_table/partition_table-flash: phony esp-idf/partition_table/CMakeFiles/partition_table-flash esp-idf/partition_table/partition-table-flash + + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/partition_table/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/partition_table/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/partition_table/install: phony esp-idf/partition_table/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/partition_table/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/partition_table/install/local: phony esp-idf/partition_table/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/partition_table/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/partition_table/install/strip: phony esp-idf/partition_table/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\partition_table\CMakeFiles\partition_table_bin + +build esp-idf/partition_table/CMakeFiles/partition_table_bin | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table_bin: phony partition_table/partition-table.bin partition_table/partition-table.bin + + +############################################# +# Custom command for partition_table\partition-table.bin + +build partition_table/partition-table.bin | ${cmake_ninja_workdir}partition_table/partition-table.bin: CUSTOM_COMMAND D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/partitions_singleapp.csv D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 2MB -- D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/partitions_singleapp.csv E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/partition_table/partition-table.bin && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo ******************************************************************************* && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 2MB -- E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/partition_table/partition-table.bin && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo *******************************************************************************" + DESC = Generating ../../partition_table/partition-table.bin + restat = 1 + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition-table + +build esp-idf/partition_table/CMakeFiles/partition-table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo ******************************************************************************* && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 2MB -- E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/partition_table/partition-table.bin && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo *******************************************************************************" + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition_table + +build esp-idf/partition_table/CMakeFiles/partition_table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table: CUSTOM_COMMAND || esp-idf/partition_table/partition-table esp-idf/partition_table/partition_table_bin + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "partition_table" is deprecated. Have you wanted to run "partition-table" instead? + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition-table-flash + +build esp-idf/partition_table/CMakeFiles/partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table-flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\ESP_IDF\v5.5.1\esp-idf\components\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=D:/ESP_IDF/v5.5.1/esp-idf -D SERIAL_TOOL=e:/QX_Tech/ESP32_Test/python_env/idf5.5_py3.11_env/Scripts/python.exe;;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@partition-table-flash_args -D WORKING_DIRECTORY=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build -P D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\encrypted-partition-table-flash + +build esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-partition-table-flash requires" && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" E:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/bin/cmake.exe -P D:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition_table-flash + +build esp-idf/partition_table/CMakeFiles/partition_table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table-flash: CUSTOM_COMMAND || esp-idf/partition_table/partition-table-flash + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\partition_table && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "partition_table-flash" is deprecated. Have you wanted to run "partition-table-flash" instead? + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_app_format + + +############################################# +# Order-only phony target for __idf_esp_app_format + +build cmake_object_order_depends_target___idf_esp_app_format: phony || cmake_object_order_depends_target___idf_esp_bootloader_format + +build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\"signal_generator\" -DPROJECT_VER=\"1\" + DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir + OBJECT_FILE_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir + TARGET_COMPILE_PDB = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\__idf_esp_app_format.pdb + TARGET_PDB = esp-idf\esp_app_format\libesp_app_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_app_format + + +############################################# +# Link the static library esp-idf\esp_app_format\libesp_app_format.a + +build esp-idf/esp_app_format/libesp_app_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\__idf_esp_app_format.pdb + TARGET_FILE = esp-idf\esp_app_format\libesp_app_format.a + TARGET_PDB = esp-idf\esp_app_format\libesp_app_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_app_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_app_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_app_format/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_app_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_app_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install: phony esp-idf/esp_app_format/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_app_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_app_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install/local: phony esp-idf/esp_app_format/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_app_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_app_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install/strip: phony esp-idf/esp_app_format/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Order-only phony target for __idf_esp_bootloader_format + +build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_app_update + +build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\esp_bootloader_desc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + OBJECT_FILE_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Link the static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a + +build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/app_update/libapp_update.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_bootloader_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_bootloader_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_bootloader_format/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_bootloader_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_bootloader_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install: phony esp-idf/esp_bootloader_format/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_bootloader_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_bootloader_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install/local: phony esp-idf/esp_bootloader_format/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_bootloader_format && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install/strip: phony esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_app_update + + +############################################# +# Order-only phony target for __idf_app_update + +build cmake_object_order_depends_target___idf_app_update: phony || cmake_object_order_depends_target___idf_esp_partition + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_ops.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + OBJECT_FILE_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb + TARGET_PDB = esp-idf\app_update\libapp_update.pdb + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj: C_COMPILER____idf_app_update_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/app_update/esp_ota_app_desc.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_app_desc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + OBJECT_FILE_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb + TARGET_PDB = esp-idf\app_update\libapp_update.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_app_update + + +############################################# +# Link the static library esp-idf\app_update\libapp_update.a + +build esp-idf/app_update/libapp_update.a: C_STATIC_LIBRARY_LINKER____idf_app_update_ esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj || esp-idf/esp_partition/libesp_partition.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb + TARGET_FILE = esp-idf\app_update\libapp_update.a + TARGET_PDB = esp-idf\app_update\libapp_update.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\app_update && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/app_update/edit_cache: phony esp-idf/app_update/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/app_update/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\app_update && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/app_update/rebuild_cache: phony esp-idf/app_update/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/app_update/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/app_update/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\app_update && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/app_update/install: phony esp-idf/app_update/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/app_update/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\app_update && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/app_update/install/local: phony esp-idf/app_update/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/app_update/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\app_update && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/app_update/install/strip: phony esp-idf/app_update/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_partition + + +############################################# +# Order-only phony target for __idf_esp_partition + +build cmake_object_order_depends_target___idf_esp_partition: phony || cmake_object_order_depends_target___idf_efuse + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj: C_COMPILER____idf_esp_partition_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + OBJECT_FILE_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj: C_COMPILER____idf_esp_partition_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition_target.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + OBJECT_FILE_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_partition + + +############################################# +# Link the static library esp-idf\esp_partition\libesp_partition.a + +build esp-idf/esp_partition/libesp_partition.a: C_STATIC_LIBRARY_LINKER____idf_esp_partition_ esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_FILE = esp-idf\esp_partition\libesp_partition.a + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_partition/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_partition && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_partition/edit_cache: phony esp-idf/esp_partition/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_partition/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_partition && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_partition/rebuild_cache: phony esp-idf/esp_partition/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_partition/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_partition/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_partition && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_partition/install: phony esp-idf/esp_partition/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_partition/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_partition && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_partition/install/local: phony esp-idf/esp_partition/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_partition/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_partition && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_partition/install/strip: phony esp-idf/esp_partition/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Order-only phony target for __idf_efuse + +build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_bootloader_support + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_rtc_calib.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes\esp_efuse_api_key.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj: C_COMPILER____idf_efuse_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_startup.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_startup.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Link the static library esp-idf\efuse\libefuse.a + +build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +############################################# +# Utility command for efuse-common-table + +build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table + + +############################################# +# Utility command for efuse_common_table + +build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table + + +############################################# +# Utility command for efuse-custom-table + +build esp-idf/efuse/efuse-custom-table: phony + + +############################################# +# Utility command for efuse_custom_table + +build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table + + +############################################# +# Utility command for show-efuse-table + +build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table + + +############################################# +# Utility command for show_efuse_table + +build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table + + +############################################# +# Utility command for efuse_test_table + +build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table + + +############################################# +# Utility command for edit_cache + +build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/efuse/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/efuse/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/efuse/install: phony esp-idf/efuse/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/efuse/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/efuse/install/local: phony esp-idf/efuse/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/efuse/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/efuse/install/strip: phony esp-idf/efuse/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse-common-table + +build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_common_table + +build esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_custom_table + +build esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show-efuse-table + +build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.csv -t esp32s3 --max_blk_len 256 --info" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show_efuse_table + +build esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -E echo " + DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_test_table + +build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\efuse && e:\QX_Tech\ESP32_Test\python_env\idf5.5_py3.11_env\Scripts\python.exe D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32s3 --max_blk_len 256" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Order-only phony target for __idf_bootloader_support + +build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_esp_mm + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_sha.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/secure_boot_secure_features.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3\secure_boot_secure_features.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32s3 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Link the static library esp-idf\bootloader_support\libbootloader_support.a + +build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj || esp-idf/esp_mm/libesp_mm.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/bootloader_support/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/bootloader_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install: phony esp-idf/bootloader_support/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/bootloader_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install/local: phony esp-idf/bootloader_support/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/bootloader_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\bootloader_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install/strip: phony esp-idf/bootloader_support/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_mm + + +############################################# +# Order-only phony target for __idf_esp_mm + +build cmake_object_order_depends_target___idf_esp_mm: phony || cmake_object_order_depends_target___idf_spi_flash + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj: C_COMPILER____idf_esp_mm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_mmu_map.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj: C_COMPILER____idf_esp_mm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/port/esp32s3/ext_mem_layout.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\port\esp32s3\ext_mem_layout.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj: C_COMPILER____idf_esp_mm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/esp_cache_msync.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_cache_msync.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj: C_COMPILER____idf_esp_mm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/esp_cache_utils.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_cache_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj: C_COMPILER____idf_esp_mm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/heap_align_hw.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\heap_align_hw.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_mm + + +############################################# +# Link the static library esp-idf\esp_mm\libesp_mm.a + +build esp-idf/esp_mm/libesp_mm.a: C_STATIC_LIBRARY_LINKER____idf_esp_mm_ esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_FILE = esp-idf\esp_mm\libesp_mm.a + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_mm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_mm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_mm/edit_cache: phony esp-idf/esp_mm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_mm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_mm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_mm/rebuild_cache: phony esp-idf/esp_mm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_mm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_mm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_mm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_mm/install: phony esp-idf/esp_mm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_mm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_mm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_mm/install/local: phony esp-idf/esp_mm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_mm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_mm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_mm/install/strip: phony esp-idf/esp_mm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Order-only phony target for __idf_spi_flash + +build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_system + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_brownout_hook.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp32s3\spi_flash_oct_flash_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_hpm_enable.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_hpm_enable.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_drivers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_generic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_issi.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_gd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_winbond.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_boya.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic_opi.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_th.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\memspi_host_driver.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\cache_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_mmap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_ops.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_wrap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_api.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_spi_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_os_func_app.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_os_func_noos.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Link the static library esp-idf\spi_flash\libspi_flash.a + +build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj || esp-idf/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\spi_flash && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\spi_flash && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/spi_flash/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/spi_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\spi_flash && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/spi_flash/install: phony esp-idf/spi_flash/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/spi_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\spi_flash && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/spi_flash/install/local: phony esp-idf/spi_flash/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/spi_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\spi_flash && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/spi_flash/install/strip: phony esp-idf/spi_flash/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Order-only phony target for __idf_esp_system + +build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_common + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\crosscore_int.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_ipc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_system_console.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_system_console.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\freertos_hooks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\int_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\panic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_system.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/startup_funcs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup_funcs.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\system_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\stack_check.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\ubsan.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\xt_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt_impl_timergroup.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\cpu_start.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\panic_handler.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/esp_system_chip.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\esp_system_chip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/image_process.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\image_process.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/esp_ipc_isr.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\esp_ipc_isr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_port.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\esp_ipc_isr_port.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\esp_ipc_isr_handler.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\esp_ipc_isr_routines.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/panic_arch.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\panic_arch.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/panic_handler_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\panic_handler_asm.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\expression_with_stack.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\expression_with_stack_asm.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\debug_helpers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\debug_helpers_asm.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\debug_stubs.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/trax.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\trax.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/highint_hdl.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\highint_hdl.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/clk.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/reset_reason.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\reset_reason.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/system_internal.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\system_internal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\cache_err_int.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj: C_COMPILER____idf_esp_system_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/apb_backup_dma.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3\apb_backup_dma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Link the static library esp-idf\esp_system\libesp_system.a + +build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +############################################# +# Utility command for memory.ld + +build esp-idf/esp_system/memory.ld: phony esp-idf/esp_system/CMakeFiles/memory.ld esp-idf/esp_system/ld/memory.ld + + +############################################# +# Utility command for sections.ld.in + +build esp-idf/esp_system/sections.ld.in: phony esp-idf/esp_system/CMakeFiles/sections.ld.in esp-idf/esp_system/ld/sections.ld.in + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/install: phony esp-idf/esp_system/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/install/local: phony esp-idf/esp_system/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/install/strip: phony esp-idf/esp_system/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\esp_system\CMakeFiles\memory.ld + +build esp-idf/esp_system/CMakeFiles/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/memory.ld: phony esp-idf/esp_system/ld/memory.ld + + +############################################# +# Custom command for esp-idf\esp_system\ld\memory.ld + +build esp-idf/esp_system/ld/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/memory.ld: CUSTOM_COMMAND D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ld/esp32s3/memory.ld.in config/sdkconfig.h + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCC=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe -DSOURCE=D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ld/esp32s3/memory.ld.in -DTARGET=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/memory.ld -DCONFIG_DIR=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -DLD_DIR=D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ld -P E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/linker_script_generator.cmake" + DESC = Generating E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/memory.ld linker script... + restat = 1 + + +############################################# +# Phony custom command for esp-idf\esp_system\CMakeFiles\sections.ld.in + +build esp-idf/esp_system/CMakeFiles/sections.ld.in | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/sections.ld.in: phony esp-idf/esp_system/ld/sections.ld.in + + +############################################# +# Custom command for esp-idf\esp_system\ld\sections.ld.in + +build esp-idf/esp_system/ld/sections.ld.in | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld.in: CUSTOM_COMMAND D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ld/esp32s3/sections.ld.in config/sdkconfig.h + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCC=E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe -DSOURCE=D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ld/esp32s3/sections.ld.in -DTARGET=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/sections.ld.in -DCONFIG_DIR=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -DLD_DIR=D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ld -P E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/linker_script_generator.cmake" + DESC = Generating E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/ld/sections.ld.in linker script... + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/port/edit_cache: phony esp-idf/esp_system/port/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/port/rebuild_cache: phony esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/port/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install: phony esp-idf/esp_system/port/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install/local: phony esp-idf/esp_system/port/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install/strip: phony esp-idf/esp_system/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port\soc\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32s3/edit_cache: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port\soc\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32s3/rebuild_cache: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/port/soc/esp32s3/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port\soc\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32s3/install: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port\soc\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32s3/install/local: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_system\port\soc\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32s3/install/strip: phony esp-idf/esp_system/port/soc/esp32s3/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Order-only phony target for __idf_esp_common + +build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom + +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Link the static library esp-idf\esp_common\libesp_common.a + +build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_common && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_common && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_common/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_common/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_common && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_common/install: phony esp-idf/esp_common/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_common/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_common && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_common/install/local: phony esp-idf/esp_common/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_common/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_common && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_common/install/strip: phony esp-idf/esp_common/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Order-only phony target for __idf_esp_rom + +build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_hal + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_uart.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_longjmp.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_wdt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj: C_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_cache_esp32s2_esp32s3.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_cache_writeback_esp32s3.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Link the static library esp-idf\esp_rom\libesp_rom.a + +build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_rom && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_rom && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_rom/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_rom/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_rom && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_rom/install: phony esp-idf/esp_rom/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_rom/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_rom && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_rom/install/local: phony esp-idf/esp_rom/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_rom/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_rom && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_rom/install/strip: phony esp-idf/esp_rom/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Order-only phony target for __idf_hal + +build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_log + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hal_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/mpu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mpu_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\efuse_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/color_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\color_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_encrypt_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/clk_tree_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\clk_tree_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/systimer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\systimer_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uart_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uart_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gpio_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\rtc_io_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\timer_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ledc_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ledc_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2c_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2c_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\rmt_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\pcnt_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mcpwm_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/uhci_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uhci_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/twai_hal_sja1000.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\twai_hal_sja1000.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/gdma_hal_top.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal_top.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/gdma_hal_ahb_v1.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal_ahb_v1.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2s_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/sdm_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sdm_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/sdmmc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sdmmc_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_hal_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_oneshot_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/lcd_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\lcd_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/mpi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mpi_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sha_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\aes_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/brownout_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\brownout_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hal_iram.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_slave_hd_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hd_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_flash_hal_gpspi.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_gpspi.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/hmac_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hmac_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/ds_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ds_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/cam_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cam_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/usb_serial_jtag_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_serial_jtag_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/usb_dwc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_dwc_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/usb_wrap_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_wrap_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/touch_sensor_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/touch_sens_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\touch_sens_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/xt_wdt_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\xt_wdt_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj: C_COMPILER____idf_hal_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/rtc_cntl_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3\rtc_cntl_hal.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Link the static library esp-idf\hal\libhal.a + +build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_FILE = esp-idf\hal\libhal.a + TARGET_PDB = esp-idf\hal\libhal.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\hal && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\hal && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/hal/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/hal/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\hal && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/hal/install: phony esp-idf/hal/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/hal/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\hal && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/hal/install/local: phony esp-idf/hal/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/hal/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\hal && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/hal/install/strip: phony esp-idf/hal/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Order-only phony target for __idf_log + +build cmake_object_order_depends_target___idf_log: phony || cmake_object_order_depends_target___idf_heap + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/os/log_timestamp.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_timestamp.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/os/log_lock.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_lock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer\log_buffers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/os/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\util.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_format_text.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_format_text.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_print.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_print.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/os/log_write.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_write.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_level/log_level.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\log_level.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\tag_log_level.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\linked_list\log_linked_list.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\linked_list + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj: C_COMPILER____idf_log_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\cache\log_binary_heap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\cache + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Link the static library esp-idf\log\liblog.a + +build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj || esp-idf/heap/libheap.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_FILE = esp-idf\log\liblog.a + TARGET_PDB = esp-idf\log\liblog.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\log && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\log && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/log/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/log/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\log && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/log/install: phony esp-idf/log/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/log/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\log && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/log/install/local: phony esp-idf/log/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/log/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\log && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/log/install/strip: phony esp-idf/log/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_heap + + +############################################# +# Order-only phony target for __idf_heap + +build cmake_object_order_depends_target___idf_heap: phony || cmake_object_order_depends_target___idf_soc + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj: C_COMPILER____idf_heap_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/heap_caps_base.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_base.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj: C_COMPILER____idf_heap_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\multi_heap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj: C_COMPILER____idf_heap_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/tlsf.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\tlsf\tlsf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\tlsf + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\memory_layout_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj: C_COMPILER____idf_heap_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/port/esp32s3/memory_layout.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32s3\memory_layout.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_heap + + +############################################# +# Link the static library esp-idf\heap\libheap.a + +build esp-idf/heap/libheap.a: C_STATIC_LIBRARY_LINKER____idf_heap_ esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_FILE = esp-idf\heap\libheap.a + TARGET_PDB = esp-idf\heap\libheap.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\heap && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/heap/edit_cache: phony esp-idf/heap/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\heap && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/heap/rebuild_cache: phony esp-idf/heap/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/heap/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/heap/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\heap && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/heap/install: phony esp-idf/heap/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/heap/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\heap && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/heap/install/local: phony esp-idf/heap/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/heap/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\heap && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/heap/install/strip: phony esp-idf/heap/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Order-only phony target for __idf_soc + +build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_esp_security + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\interrupts.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gpio_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/uart_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\uart_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/adc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\adc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\dedic_gpio_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/gdma_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\gdma_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/spi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\spi_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/ledc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\ledc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/pcnt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\pcnt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/rmt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rmt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/sdm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdm_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/i2s_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2s_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/i2c_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\i2c_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\temperature_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/timer_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\timer_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/lcd_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\lcd_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\mcpwm_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\mpi_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/touch_sensor_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/twai_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\twai_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/wdt_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\wdt_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/usb_dwc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\usb_dwc_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/cam_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\cam_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj: C_COMPILER____idf_soc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/power_supply_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3\power_supply_periph.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Link the static library esp-idf\soc\libsoc.a + +build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj || esp-idf/esp_security/libesp_security.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\soc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\soc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/soc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/soc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\soc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/soc/install: phony esp-idf/soc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/soc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\soc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/soc/install/local: phony esp-idf/soc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/soc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\soc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/soc/install/strip: phony esp-idf/soc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_security + + +############################################# +# Order-only phony target for __idf_esp_security + +build cmake_object_order_depends_target___idf_esp_security: phony || cmake_object_order_depends_target___idf_esp_hw_support + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj: C_COMPILER____idf_esp_security_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/init.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj: C_COMPILER____idf_esp_security_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp_hmac.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_hmac.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj: C_COMPILER____idf_esp_security_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp_ds.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_ds.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_security_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_lock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj: C_COMPILER____idf_esp_security_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_periph_clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_security + + +############################################# +# Link the static library esp-idf\esp_security\libesp_security.a + +build esp-idf/esp_security/libesp_security.a: C_STATIC_LIBRARY_LINKER____idf_esp_security_ esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_FILE = esp-idf\esp_security\libesp_security.a + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_security && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_security && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_security/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_security/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_security && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_security/install: phony esp-idf/esp_security/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_security/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_security && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_security/install/local: phony esp-idf/esp_security/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_security/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_security && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_security/install/strip: phony esp-idf/esp_security/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Order-only phony target for __idf_esp_hw_support + +build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_freertos + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_cpu_intr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\cpu_region_protect.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\clk_ctrl_os.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\hw_random.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\intr_alloc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mac_addr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\periph_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\revision.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\rtc_module.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\regi2c_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_gpio_reserve.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sar_periph_ctrl_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/io_mux.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\io_mux.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_clk_tree.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_clk_tree.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\esp_dma_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_link.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma_link.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/spi_bus_lock.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\spi_bus_lock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/clk_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\clk_utils.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp_clk_tree_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\spi_share_hw_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\adc_share_hw_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_modem.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modem.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_console.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_console.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_usb.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_usb.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_gpio.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_event.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_event.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\deprecated\gdma_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\esp_async_memcpy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\async_memcpy_gdma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/systimer.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\systimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/mspi_timing_tuning.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\mspi_timing_tuning.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_wake_stub.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_clock_output.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_clock_output.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/brownout.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\power_supply\brownout.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\power_supply + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_sleep.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\rtc_time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\chip_info.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\sar_periph_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_memprot.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3\esp_memprot.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp_memprot_conv.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp_memprot_conv.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\port\esp32s3\mspi_timing_config.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\port\esp32s3\mspi_timing_by_mspi_delay.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32s3/sleep_cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32s3\sleep_cpu.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Link the static library esp-idf\esp_hw_support\libesp_hw_support.a + +build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj || esp-idf/freertos/libfreertos.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install: phony esp-idf/esp_hw_support/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install/local: phony esp-idf/esp_hw_support/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install/strip: phony esp-idf/esp_hw_support/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/port/esp32s3/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/install: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/install/local: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32s3/install/strip: phony esp-idf/esp_hw_support/port/esp32s3/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/edit_cache: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/rebuild_cache: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/install: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/install/local: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\mspi_timing_tuning\port\esp32s3 && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/install/strip: phony esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\lowpower && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\lowpower && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/lowpower/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\lowpower && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\lowpower && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install/local: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_hw_support\lowpower && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install/strip: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_freertos + + +############################################# +# Order-only phony target for __idf_freertos + +build cmake_object_order_depends_target___idf_freertos: phony || cmake_object_order_depends_target___idf_newlib + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/heap_idf.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\heap_idf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\app_startup.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/port_systick.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_systick.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\list.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\queue.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\tasks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\timers.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\event_groups.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\stream_buffer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\port.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj: ASM_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\portasm.S.obj.d + FLAGS = -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_overlay_os_hook.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\freertos_compatibility.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions_event_groups.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj: C_COMPILER____idf_freertos_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_freertos + + +############################################# +# Link the static library esp-idf\freertos\libfreertos.a + +build esp-idf/freertos/libfreertos.a: C_STATIC_LIBRARY_LINKER____idf_freertos_ esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj || esp-idf/newlib/libnewlib.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_FILE = esp-idf\freertos\libfreertos.a + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\freertos && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\freertos && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/freertos/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/freertos/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\freertos && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/freertos/install: phony esp-idf/freertos/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/freertos/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\freertos && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/freertos/install/local: phony esp-idf/freertos/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/freertos/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\freertos && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/freertos/install/strip: phony esp-idf/freertos/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_newlib + + +############################################# +# Order-only phony target for __idf_newlib + +build cmake_object_order_depends_target___idf_newlib: phony || cmake_object_order_depends_target___idf_pthread + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/abort.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\abort.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/assert.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\assert.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/heap.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\heap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/locks.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\locks.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/poll.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\poll.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/pthread.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\pthread.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/random.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\random.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/getentropy.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\getentropy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/termios.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\termios.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/stdatomic.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\stdatomic.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/time.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\time.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/sysconf.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\sysconf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/realpath.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\realpath.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/scandir.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\scandir.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/syscalls.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\syscalls.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/reent_syscalls.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\reent_syscalls.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\port\esp_time_impl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\port + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/flockfile.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\flockfile.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/reent_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\reent_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj: C_COMPILER____idf_newlib_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/newlib_init.c || cmake_object_order_depends_target___idf_newlib + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\newlib_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_newlib + + +############################################# +# Link the static library esp-idf\newlib\libnewlib.a + +build esp-idf/newlib/libnewlib.a: C_STATIC_LIBRARY_LINKER____idf_newlib_ esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj || esp-idf/pthread/libpthread.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb + TARGET_FILE = esp-idf\newlib\libnewlib.a + TARGET_PDB = esp-idf\newlib\libnewlib.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/newlib/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/newlib/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/newlib/install: phony esp-idf/newlib/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/newlib/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/newlib/install/local: phony esp-idf/newlib/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/newlib/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/newlib/install/strip: phony esp-idf/newlib/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/src/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib\src\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/edit_cache: phony esp-idf/newlib/src/port/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib\src\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/rebuild_cache: phony esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/newlib/src/port/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/newlib/src/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib\src\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/install: phony esp-idf/newlib/src/port/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/newlib/src/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib\src\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/install/local: phony esp-idf/newlib/src/port/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/newlib/src/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\newlib\src\port && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/newlib/src/port/install/strip: phony esp-idf/newlib/src/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_pthread + + +############################################# +# Order-only phony target for __idf_pthread + +build cmake_object_order_depends_target___idf_pthread: phony || cmake_object_order_depends_target___idf_cxx + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_cond_var.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_local_storage.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_rwlock.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj: C_COMPILER____idf_pthread_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread_semaphore.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_semaphore.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_pthread + + +############################################# +# Link the static library esp-idf\pthread\libpthread.a + +build esp-idf/pthread/libpthread.a: C_STATIC_LIBRARY_LINKER____idf_pthread_ esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj || esp-idf/cxx/libcxx.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_FILE = esp-idf\pthread\libpthread.a + TARGET_PDB = esp-idf\pthread\libpthread.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\pthread && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/pthread/edit_cache: phony esp-idf/pthread/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/pthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\pthread && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/pthread/rebuild_cache: phony esp-idf/pthread/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/pthread/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/pthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\pthread && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/pthread/install: phony esp-idf/pthread/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/pthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\pthread && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/pthread/install/local: phony esp-idf/pthread/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/pthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\pthread && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/pthread/install/strip: phony esp-idf/pthread/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_cxx + + +############################################# +# Order-only phony target for __idf_cxx + +build cmake_object_order_depends_target___idf_cxx: phony || esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_exception_stubs.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_guards.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/cxx/cxx_init.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_init.cpp.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cxx + + +############################################# +# Link the static library esp-idf\cxx\libcxx.a + +build esp-idf/cxx/libcxx.a: C_STATIC_LIBRARY_LINKER____idf_cxx_ esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj || esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_FILE = esp-idf\cxx\libcxx.a + TARGET_PDB = esp-idf\cxx\libcxx.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\cxx && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/cxx/edit_cache: phony esp-idf/cxx/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cxx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\cxx && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/cxx/rebuild_cache: phony esp-idf/cxx/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/cxx/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/cxx/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\cxx && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/cxx/install: phony esp-idf/cxx/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/cxx/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\cxx && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/cxx/install/local: phony esp-idf/cxx/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/cxx/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\cxx && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/cxx/install/strip: phony esp-idf/cxx/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_dac && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/edit_cache: phony esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_dac && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/rebuild_cache: phony esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_dac/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_dac/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_dac && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install: phony esp-idf/esp_driver_dac/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_dac/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_dac && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install/local: phony esp-idf/esp_driver_dac/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_dac/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_dac && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install/strip: phony esp-idf/esp_driver_dac/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer + + +############################################# +# Order-only phony target for __idf_esp_driver_gptimer + +build cmake_object_order_depends_target___idf_esp_driver_gptimer: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + +build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer + + +############################################# +# Link the static library esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a + +build esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_ esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_FILE = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gptimer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/edit_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gptimer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/rebuild_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_gptimer/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_gptimer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gptimer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install: phony esp-idf/esp_driver_gptimer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gptimer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install/local: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_gptimer && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install/strip: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_ringbuf + + +############################################# +# Order-only phony target for __idf_esp_ringbuf + +build cmake_object_order_depends_target___idf_esp_ringbuf: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\ringbuf.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include + OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + OBJECT_FILE_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + TARGET_COMPILE_PDB = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\__idf_esp_ringbuf.pdb + TARGET_PDB = esp-idf\esp_ringbuf\libesp_ringbuf.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_ringbuf + + +############################################# +# Link the static library esp-idf\esp_ringbuf\libesp_ringbuf.a + +build esp-idf/esp_ringbuf/libesp_ringbuf.a: C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_ esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\__idf_esp_ringbuf.pdb + TARGET_FILE = esp-idf\esp_ringbuf\libesp_ringbuf.a + TARGET_PDB = esp-idf\esp_ringbuf\libesp_ringbuf.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_ringbuf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/edit_cache: phony esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_ringbuf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/rebuild_cache: phony esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_ringbuf/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_ringbuf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_ringbuf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install: phony esp-idf/esp_ringbuf/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_ringbuf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_ringbuf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install/local: phony esp-idf/esp_ringbuf/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_ringbuf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_ringbuf && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install/strip: phony esp-idf/esp_ringbuf/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_pcnt + + +############################################# +# Order-only phony target for __idf_esp_driver_pcnt + +build cmake_object_order_depends_target___idf_esp_driver_pcnt: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj: C_COMPILER____idf_esp_driver_pcnt_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c || cmake_object_order_depends_target___idf_esp_driver_pcnt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\src\pulse_cnt.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\__idf_esp_driver_pcnt.pdb + TARGET_PDB = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_pcnt + + +############################################# +# Link the static library esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a + +build esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_pcnt_ esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\__idf_esp_driver_pcnt.pdb + TARGET_FILE = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a + TARGET_PDB = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_pcnt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/edit_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_pcnt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/rebuild_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_pcnt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_pcnt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_pcnt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install: phony esp-idf/esp_driver_pcnt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_pcnt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install/local: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_pcnt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install/strip: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_spi + + +############################################# +# Order-only phony target for __idf_esp_driver_spi + +build cmake_object_order_depends_target___idf_esp_driver_spi: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_master.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_slave.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_slave_hd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_spi + + +############################################# +# Link the static library esp-idf\esp_driver_spi\libesp_driver_spi.a + +build esp-idf/esp_driver_spi/libesp_driver_spi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_ esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_FILE = esp-idf\esp_driver_spi\libesp_driver_spi.a + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_spi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/edit_cache: phony esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_spi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/rebuild_cache: phony esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_spi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_spi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_spi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install: phony esp-idf/esp_driver_spi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_spi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_spi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install/local: phony esp-idf/esp_driver_spi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_spi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_spi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install/strip: phony esp-idf/esp_driver_spi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_mcpwm + + +############################################# +# Order-only phony target for __idf_esp_driver_mcpwm + +build cmake_object_order_depends_target___idf_esp_driver_mcpwm: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_cap.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_cmpr.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_com.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_fault.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_gen.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_oper.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_sync.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_timer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_mcpwm + + +############################################# +# Link the static library esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a + +build esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_mcpwm_ esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_FILE = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_mcpwm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/edit_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_mcpwm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/rebuild_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_mcpwm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_mcpwm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_mcpwm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install/local: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_mcpwm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install/strip: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ana_cmpr && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/edit_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ana_cmpr && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/rebuild_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_ana_cmpr/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ana_cmpr && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ana_cmpr && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install/local: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ana_cmpr && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install/strip: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2s + + +############################################# +# Order-only phony target for __idf_esp_driver_i2s + +build cmake_object_order_depends_target___idf_esp_driver_i2s: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_common.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_std.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_std.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_pdm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_tdm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_platform.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_platform.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2s + + +############################################# +# Link the static library esp-idf\esp_driver_i2s\libesp_driver_i2s.a + +build esp-idf/esp_driver_i2s/libesp_driver_i2s.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_ esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_FILE = esp-idf\esp_driver_i2s\libesp_driver_i2s.a + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2s && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/edit_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2s && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/rebuild_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_i2s/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_i2s/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2s && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install: phony esp-idf/esp_driver_i2s/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_i2s/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2s && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install/local: phony esp-idf/esp_driver_i2s/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2s && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install/strip: phony esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_sdmmc + + +############################################# +# Order-only phony target for __idf_sdmmc + +build cmake_object_order_depends_target___idf_sdmmc: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_cmd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_init.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_io.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_mmc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_sd.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj: C_COMPILER____idf_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl\sd_pwr_ctrl.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_sdmmc + + +############################################# +# Link the static library esp-idf\sdmmc\libsdmmc.a + +build esp-idf/sdmmc/libsdmmc.a: C_STATIC_LIBRARY_LINKER____idf_sdmmc_ esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_FILE = esp-idf\sdmmc\libsdmmc.a + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/sdmmc/edit_cache: phony esp-idf/sdmmc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/sdmmc/rebuild_cache: phony esp-idf/sdmmc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/sdmmc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/sdmmc/install: phony esp-idf/sdmmc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/sdmmc/install/local: phony esp-idf/sdmmc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/sdmmc/install/strip: phony esp-idf/sdmmc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdmmc + + +############################################# +# Order-only phony target for __idf_esp_driver_sdmmc + +build cmake_object_order_depends_target___idf_esp_driver_sdmmc: phony || cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj: C_COMPILER____idf_esp_driver_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/src/sdmmc_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src\sdmmc_transaction.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\__idf_esp_driver_sdmmc.pdb + TARGET_PDB = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.pdb + +build esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj: C_COMPILER____idf_esp_driver_sdmmc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/src/sdmmc_host.c || cmake_object_order_depends_target___idf_esp_driver_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src\sdmmc_host.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\__idf_esp_driver_sdmmc.pdb + TARGET_PDB = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdmmc + + +############################################# +# Link the static library esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.a + +build esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdmmc_ esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj || esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\__idf_esp_driver_sdmmc.pdb + TARGET_FILE = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.a + TARGET_PDB = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/edit_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/rebuild_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdmmc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install/local: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdmmc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install/strip: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi + + +############################################# +# Order-only phony target for __idf_esp_driver_sdspi + +build cmake_object_order_depends_target___idf_esp_driver_sdspi: phony || cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_crc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_host.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_transaction.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi + + +############################################# +# Link the static library esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a + +build esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_ esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj || esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_FILE = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdspi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/edit_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdspi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/rebuild_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdspi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdspi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdspi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install: phony esp-idf/esp_driver_sdspi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdspi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install/local: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdspi && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install/strip: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/edit_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/rebuild_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install: phony esp-idf/esp_driver_sdio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install/local: phony esp-idf/esp_driver_sdio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install/strip: phony esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_bitscrambler && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/edit_cache: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_bitscrambler && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/rebuild_cache: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_bitscrambler/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_bitscrambler && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/install: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_bitscrambler && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/install/local: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_bitscrambler && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/install/strip: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_rmt + + +############################################# +# Order-only phony target for __idf_esp_driver_rmt + +build cmake_object_order_depends_target___idf_esp_driver_rmt: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_bytes.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_bytes.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_copy.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_copy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_simple.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_simple.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_rx.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_tx.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_rmt + + +############################################# +# Link the static library esp-idf\esp_driver_rmt\libesp_driver_rmt.a + +build esp-idf/esp_driver_rmt/libesp_driver_rmt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_ esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_FILE = esp-idf\esp_driver_rmt\libesp_driver_rmt.a + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_rmt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/edit_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_rmt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/rebuild_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_rmt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_rmt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_rmt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install: phony esp-idf/esp_driver_rmt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_rmt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_rmt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install/local: phony esp-idf/esp_driver_rmt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_rmt && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install/strip: phony esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_tsens + + +############################################# +# Order-only phony target for __idf_esp_driver_tsens + +build cmake_object_order_depends_target___idf_esp_driver_tsens: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj: C_COMPILER____idf_esp_driver_tsens_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c || cmake_object_order_depends_target___idf_esp_driver_tsens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src\temperature_sensor.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include + OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb + TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_tsens + + +############################################# +# Link the static library esp-idf\esp_driver_tsens\libesp_driver_tsens.a + +build esp-idf/esp_driver_tsens/libesp_driver_tsens.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_tsens_ esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb + TARGET_FILE = esp-idf\esp_driver_tsens\libesp_driver_tsens.a + TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_tsens && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/edit_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_tsens && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/rebuild_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_tsens/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_tsens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_tsens && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install: phony esp-idf/esp_driver_tsens/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_tsens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_tsens && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install/local: phony esp-idf/esp_driver_tsens/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_tsens && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install/strip: phony esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdm + + +############################################# +# Order-only phony target for __idf_esp_driver_sdm + +build cmake_object_order_depends_target___idf_esp_driver_sdm: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj: C_COMPILER____idf_esp_driver_sdm_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/src/sdm.c || cmake_object_order_depends_target___idf_esp_driver_sdm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src\sdm.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\__idf_esp_driver_sdm.pdb + TARGET_PDB = esp-idf\esp_driver_sdm\libesp_driver_sdm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdm + + +############################################# +# Link the static library esp-idf\esp_driver_sdm\libesp_driver_sdm.a + +build esp-idf/esp_driver_sdm/libesp_driver_sdm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_ esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\__idf_esp_driver_sdm.pdb + TARGET_FILE = esp-idf\esp_driver_sdm\libesp_driver_sdm.a + TARGET_PDB = esp-idf\esp_driver_sdm\libesp_driver_sdm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/edit_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/rebuild_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install: phony esp-idf/esp_driver_sdm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install/local: phony esp-idf/esp_driver_sdm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_sdm && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install/strip: phony esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2c + + +############################################# +# Order-only phony target for __idf_esp_driver_i2c + +build cmake_object_order_depends_target___idf_esp_driver_i2c: phony || cmake_object_order_depends_target___idf_esp_ringbuf cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_master.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_master.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_common.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_slave.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_slave.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2c + + +############################################# +# Link the static library esp-idf\esp_driver_i2c\libesp_driver_i2c.a + +build esp-idf/esp_driver_i2c/libesp_driver_i2c.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_ esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_FILE = esp-idf\esp_driver_i2c\libesp_driver_i2c.a + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2c && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/edit_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2c && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/rebuild_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_i2c/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_i2c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2c && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install: phony esp-idf/esp_driver_i2c/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_i2c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2c && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install/local: phony esp-idf/esp_driver_i2c/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_i2c && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install/strip: phony esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_uart + + +############################################# +# Order-only phony target for __idf_esp_driver_uart + +build cmake_object_order_depends_target___idf_esp_driver_uart: phony || cmake_object_order_depends_target___idf_esp_ringbuf cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/src/uart.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + +build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_wakeup.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart_wakeup.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + +build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/src/uhci.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uhci.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_uart + + +############################################# +# Link the static library esp-idf\esp_driver_uart\libesp_driver_uart.a + +build esp-idf/esp_driver_uart/libesp_driver_uart.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_ esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_FILE = esp-idf\esp_driver_uart\libesp_driver_uart.a + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_uart && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/edit_cache: phony esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_uart && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/rebuild_cache: phony esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_uart/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_uart/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_uart && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install: phony esp-idf/esp_driver_uart/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_uart/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_uart && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install/local: phony esp-idf/esp_driver_uart/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_uart/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_uart && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install/strip: phony esp-idf/esp_driver_uart/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_ledc + + +############################################# +# Order-only phony target for __idf_esp_driver_ledc + +build cmake_object_order_depends_target___idf_esp_driver_ledc: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj: C_COMPILER____idf_esp_driver_ledc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/src/ledc.c || cmake_object_order_depends_target___idf_esp_driver_ledc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src\ledc.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\__idf_esp_driver_ledc.pdb + TARGET_PDB = esp-idf\esp_driver_ledc\libesp_driver_ledc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_ledc + + +############################################# +# Link the static library esp-idf\esp_driver_ledc\libesp_driver_ledc.a + +build esp-idf/esp_driver_ledc/libesp_driver_ledc.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_ esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\__idf_esp_driver_ledc.pdb + TARGET_FILE = esp-idf\esp_driver_ledc\libesp_driver_ledc.a + TARGET_PDB = esp-idf\esp_driver_ledc\libesp_driver_ledc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ledc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/edit_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ledc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/rebuild_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_ledc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_ledc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ledc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install: phony esp-idf/esp_driver_ledc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_ledc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ledc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install/local: phony esp-idf/esp_driver_ledc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_ledc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install/strip: phony esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_parlio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/edit_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_parlio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/rebuild_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_parlio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_parlio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_parlio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install: phony esp-idf/esp_driver_parlio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_parlio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_parlio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install/local: phony esp-idf/esp_driver_parlio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_parlio && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install/strip: phony esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag + + +############################################# +# Order-only phony target for __idf_esp_driver_usb_serial_jtag + +build cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag: phony || cmake_object_order_depends_target___idf_esp_ringbuf cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag_connection_monitor.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag + + +############################################# +# Link the static library esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.a + +build esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_usb_serial_jtag_ esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb + TARGET_FILE = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.a + TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_usb_serial_jtag && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/edit_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_usb_serial_jtag && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/rebuild_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_usb_serial_jtag/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_usb_serial_jtag && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_usb_serial_jtag && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install/local: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_usb_serial_jtag && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install/strip: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_twai + + +############################################# +# Order-only phony target for __idf_esp_driver_twai + +build cmake_object_order_depends_target___idf_esp_driver_twai: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj: C_COMPILER____idf_esp_driver_twai_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai.c || cmake_object_order_depends_target___idf_esp_driver_twai + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\esp_twai.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb + TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb + +build esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj: C_COMPILER____idf_esp_driver_twai_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai_onchip.c || cmake_object_order_depends_target___idf_esp_driver_twai + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\esp_twai_onchip.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb + TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_twai + + +############################################# +# Link the static library esp-idf\esp_driver_twai\libesp_driver_twai.a + +build esp-idf/esp_driver_twai/libesp_driver_twai.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_twai_ esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb + TARGET_FILE = esp-idf\esp_driver_twai\libesp_driver_twai.a + TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_twai/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_twai && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/edit_cache: phony esp-idf/esp_driver_twai/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_twai && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/rebuild_cache: phony esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_twai/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_twai/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_twai && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/install: phony esp-idf/esp_driver_twai/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_twai/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_twai && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/install/local: phony esp-idf/esp_driver_twai/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_twai/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_driver_twai && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/install/strip: phony esp-idf/esp_driver_twai/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_driver + + +############################################# +# Order-only phony target for __idf_driver + +build cmake_object_order_depends_target___idf_driver: phony || cmake_object_order_depends_target___idf_esp_driver_gptimer cmake_object_order_depends_target___idf_esp_driver_i2c cmake_object_order_depends_target___idf_esp_driver_i2s cmake_object_order_depends_target___idf_esp_driver_ledc cmake_object_order_depends_target___idf_esp_driver_mcpwm cmake_object_order_depends_target___idf_esp_driver_pcnt cmake_object_order_depends_target___idf_esp_driver_rmt cmake_object_order_depends_target___idf_esp_driver_sdm cmake_object_order_depends_target___idf_esp_driver_sdmmc cmake_object_order_depends_target___idf_esp_driver_sdspi cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_esp_driver_tsens cmake_object_order_depends_target___idf_esp_driver_twai cmake_object_order_depends_target___idf_esp_driver_uart cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag cmake_object_order_depends_target___idf_esp_ringbuf cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/adc_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\adc_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\adc_dma_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\timer_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/i2c.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c\i2c.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\i2s_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/mcpwm_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\mcpwm_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/pcnt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\pcnt_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rmt_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\sigma_delta_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rtc_temperature_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/touch_sensor_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\touch_sensor_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/touch_sensor.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\esp32s3\touch_sensor.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\esp32s3 + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj: C_COMPILER____idf_driver_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/twai.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai\twai.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_driver + + +############################################# +# Link the static library esp-idf\driver\libdriver.a + +build esp-idf/driver/libdriver.a: C_STATIC_LIBRARY_LINKER____idf_driver_ esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj || esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_FILE = esp-idf\driver\libdriver.a + TARGET_PDB = esp-idf\driver\libdriver.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\driver && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/driver/edit_cache: phony esp-idf/driver/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/driver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\driver && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/driver/rebuild_cache: phony esp-idf/driver/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/driver/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/driver/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\driver && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/driver/install: phony esp-idf/driver/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/driver/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\driver && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/driver/install/local: phony esp-idf/driver/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/driver/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\driver && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/driver/install/strip: phony esp-idf/driver/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_adc + + +############################################# +# Order-only phony target for __idf_esp_adc + +build cmake_object_order_depends_target___idf_esp_adc: phony || cmake_object_order_depends_target___idf_driver cmake_object_order_depends_target___idf_esp_driver_gptimer cmake_object_order_depends_target___idf_esp_driver_i2c cmake_object_order_depends_target___idf_esp_driver_i2s cmake_object_order_depends_target___idf_esp_driver_ledc cmake_object_order_depends_target___idf_esp_driver_mcpwm cmake_object_order_depends_target___idf_esp_driver_pcnt cmake_object_order_depends_target___idf_esp_driver_rmt cmake_object_order_depends_target___idf_esp_driver_sdm cmake_object_order_depends_target___idf_esp_driver_sdmmc cmake_object_order_depends_target___idf_esp_driver_sdspi cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_esp_driver_tsens cmake_object_order_depends_target___idf_esp_driver_twai cmake_object_order_depends_target___idf_esp_driver_uart cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag cmake_object_order_depends_target___idf_esp_ringbuf cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_oneshot.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_oneshot.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_common.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_common.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_cali.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_cali.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_cali_curve_fitting.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_cali_curve_fitting.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated\esp_adc_cal_common_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_continuous.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_continuous.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_monitor.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_monitor.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/gdma/adc_dma.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\gdma\adc_dma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\gdma + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_filter.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_filter.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/curve_fitting_coefficients.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32s3\curve_fitting_coefficients.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj: C_COMPILER____idf_esp_adc_unscanned_ D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated\esp32s3\esp_adc_cal_legacy.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\deprecated\esp32s3 + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_adc + + +############################################# +# Link the static library esp-idf\esp_adc\libesp_adc.a + +build esp-idf/esp_adc/libesp_adc.a: C_STATIC_LIBRARY_LINKER____idf_esp_adc_ esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj || esp-idf/driver/libdriver.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_FILE = esp-idf\esp_adc\libesp_adc.a + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_adc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_adc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_adc/edit_cache: phony esp-idf/esp_adc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_adc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_adc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_adc/rebuild_cache: phony esp-idf/esp_adc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_adc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_adc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_adc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_adc/install: phony esp-idf/esp_adc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_adc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_adc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_adc/install/local: phony esp-idf/esp_adc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_adc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\esp_adc && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_adc/install/strip: phony esp-idf/esp_adc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# D:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Order-only phony target for __idf_main + +build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_driver cmake_object_order_depends_target___idf_esp_adc cmake_object_order_depends_target___idf_esp_driver_gptimer cmake_object_order_depends_target___idf_esp_driver_i2c cmake_object_order_depends_target___idf_esp_driver_i2s cmake_object_order_depends_target___idf_esp_driver_ledc cmake_object_order_depends_target___idf_esp_driver_mcpwm cmake_object_order_depends_target___idf_esp_driver_pcnt cmake_object_order_depends_target___idf_esp_driver_rmt cmake_object_order_depends_target___idf_esp_driver_sdm cmake_object_order_depends_target___idf_esp_driver_sdmmc cmake_object_order_depends_target___idf_esp_driver_sdspi cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_esp_driver_tsens cmake_object_order_depends_target___idf_esp_driver_twai cmake_object_order_depends_target___idf_esp_driver_uart cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag cmake_object_order_depends_target___idf_esp_ringbuf cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/main/CMakeFiles/__idf_main.dir/dac_continuous_example_main.c.obj: C_COMPILER____idf_main_unscanned_ E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/dac_continuous_example_main.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\dac_continuous_example_main.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + +build esp-idf/main/CMakeFiles/__idf_main.dir/dac_continuous_example_dma.c.obj: C_COMPILER____idf_main_unscanned_ E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/dac_continuous_example_dma.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\dac_continuous_example_dma.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + +build esp-idf/main/CMakeFiles/__idf_main.dir/dac_continuous_example_timer.c.obj: C_COMPILER____idf_main_unscanned_ E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/dac_continuous_example_timer.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\dac_continuous_example_timer.c.obj.d + FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration + INCLUDES = -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Link the static library esp-idf\main\libmain.a + +build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/dac_continuous_example_main.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/dac_continuous_example_dma.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/dac_continuous_example_timer.c.obj || esp-idf/driver/libdriver.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_FILE = esp-idf\main\libmain.a + TARGET_PDB = esp-idf\main\libmain.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\main && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake-gui.exe -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\main && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SE:\QX_Tech\Simulator\ESP32_TEST\signal_generator -BE:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/main/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/main/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\main && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/main/install: phony esp-idf/main/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/main/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\main && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/main/install/local: phony esp-idf/main/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/main/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D E:\QX_Tech\Simulator\ESP32_TEST\signal_generator\build\esp-idf\main && E:\QX_Tech\ESP32_Test\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.util + +# ============================================================================= +# Target aliases. + +build __idf_app_update: phony esp-idf/app_update/libapp_update.a + +build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a + +build __idf_cxx: phony esp-idf/cxx/libcxx.a + +build __idf_driver: phony esp-idf/driver/libdriver.a + +build __idf_efuse: phony esp-idf/efuse/libefuse.a + +build __idf_esp_adc: phony esp-idf/esp_adc/libesp_adc.a + +build __idf_esp_app_format: phony esp-idf/esp_app_format/libesp_app_format.a + +build __idf_esp_bootloader_format: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a + +build __idf_esp_driver_gpio: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +build __idf_esp_driver_gptimer: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +build __idf_esp_driver_i2c: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +build __idf_esp_driver_i2s: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +build __idf_esp_driver_ledc: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +build __idf_esp_driver_mcpwm: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +build __idf_esp_driver_pcnt: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +build __idf_esp_driver_rmt: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +build __idf_esp_driver_sdm: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +build __idf_esp_driver_sdmmc: phony esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a + +build __idf_esp_driver_sdspi: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +build __idf_esp_driver_spi: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +build __idf_esp_driver_tsens: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a + +build __idf_esp_driver_twai: phony esp-idf/esp_driver_twai/libesp_driver_twai.a + +build __idf_esp_driver_uart: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +build __idf_esp_driver_usb_serial_jtag: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + +build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build __idf_esp_mm: phony esp-idf/esp_mm/libesp_mm.a + +build __idf_esp_partition: phony esp-idf/esp_partition/libesp_partition.a + +build __idf_esp_pm: phony esp-idf/esp_pm/libesp_pm.a + +build __idf_esp_ringbuf: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +build __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a + +build __idf_esp_security: phony esp-idf/esp_security/libesp_security.a + +build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a + +build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a + +build __idf_freertos: phony esp-idf/freertos/libfreertos.a + +build __idf_hal: phony esp-idf/hal/libhal.a + +build __idf_heap: phony esp-idf/heap/libheap.a + +build __idf_log: phony esp-idf/log/liblog.a + +build __idf_main: phony esp-idf/main/libmain.a + +build __idf_mbedtls: phony esp-idf/mbedtls/libmbedtls.a + +build __idf_newlib: phony esp-idf/newlib/libnewlib.a + +build __idf_pthread: phony esp-idf/pthread/libpthread.a + +build __idf_sdmmc: phony esp-idf/sdmmc/libsdmmc.a + +build __idf_soc: phony esp-idf/soc/libsoc.a + +build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a + +build __idf_xtensa: phony esp-idf/xtensa/libxtensa.a + +build apidoc: phony esp-idf/mbedtls/mbedtls/apidoc + +build app-flash: phony esp-idf/esptool_py/app-flash + +build app_check_size: phony esp-idf/esptool_py/app_check_size + +build bootloader-flash: phony esp-idf/bootloader/bootloader-flash + +build custom_bundle: phony esp-idf/mbedtls/custom_bundle + +build efuse-common-table: phony esp-idf/efuse/efuse-common-table + +build efuse-custom-table: phony esp-idf/efuse/efuse-custom-table + +build efuse_common_table: phony esp-idf/efuse/efuse_common_table + +build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table + +build efuse_test_table: phony esp-idf/efuse/efuse_test_table + +build encrypted-app-flash: phony esp-idf/esptool_py/encrypted-app-flash + +build encrypted-bootloader-flash: phony esp-idf/bootloader/encrypted-bootloader-flash + +build encrypted-partition-table-flash: phony esp-idf/partition_table/encrypted-partition-table-flash + +build everest: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + +build lib: phony esp-idf/mbedtls/mbedtls/library/lib + +build libapp_update.a: phony esp-idf/app_update/libapp_update.a + +build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a + +build libcxx.a: phony esp-idf/cxx/libcxx.a + +build libdriver.a: phony esp-idf/driver/libdriver.a + +build libefuse.a: phony esp-idf/efuse/libefuse.a + +build libesp_adc.a: phony esp-idf/esp_adc/libesp_adc.a + +build libesp_app_format.a: phony esp-idf/esp_app_format/libesp_app_format.a + +build libesp_bootloader_format.a: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +build libesp_common.a: phony esp-idf/esp_common/libesp_common.a + +build libesp_driver_gpio.a: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +build libesp_driver_gptimer.a: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +build libesp_driver_i2c.a: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +build libesp_driver_i2s.a: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +build libesp_driver_ledc.a: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +build libesp_driver_mcpwm.a: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +build libesp_driver_pcnt.a: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +build libesp_driver_rmt.a: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +build libesp_driver_sdm.a: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +build libesp_driver_sdmmc.a: phony esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a + +build libesp_driver_sdspi.a: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +build libesp_driver_spi.a: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +build libesp_driver_tsens.a: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a + +build libesp_driver_twai.a: phony esp-idf/esp_driver_twai/libesp_driver_twai.a + +build libesp_driver_uart.a: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +build libesp_driver_usb_serial_jtag.a: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + +build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build libesp_mm.a: phony esp-idf/esp_mm/libesp_mm.a + +build libesp_partition.a: phony esp-idf/esp_partition/libesp_partition.a + +build libesp_pm.a: phony esp-idf/esp_pm/libesp_pm.a + +build libesp_ringbuf.a: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +build libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a + +build libesp_security.a: phony esp-idf/esp_security/libesp_security.a + +build libesp_system.a: phony esp-idf/esp_system/libesp_system.a + +build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a + +build libeverest.a: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + +build libfreertos.a: phony esp-idf/freertos/libfreertos.a + +build libhal.a: phony esp-idf/hal/libhal.a + +build libheap.a: phony esp-idf/heap/libheap.a + +build liblog.a: phony esp-idf/log/liblog.a + +build libmain.a: phony esp-idf/main/libmain.a + +build libmbedcrypto.a: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + +build libmbedtls.a: phony esp-idf/mbedtls/libmbedtls.a + +build libmbedx509.a: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a + +build libnewlib.a: phony esp-idf/newlib/libnewlib.a + +build libp256m.a: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a + +build libpthread.a: phony esp-idf/pthread/libpthread.a + +build libsdmmc.a: phony esp-idf/sdmmc/libsdmmc.a + +build libsoc.a: phony esp-idf/soc/libsoc.a + +build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a + +build libxtensa.a: phony esp-idf/xtensa/libxtensa.a + +build mbedcrypto: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + +build mbedtls: phony esp-idf/mbedtls/mbedtls/library/libmbedtls.a + +build mbedx509: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a + +build memory.ld: phony esp-idf/esp_system/memory.ld + +build p256m: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a + +build partition-table: phony esp-idf/partition_table/partition-table + +build partition-table-flash: phony esp-idf/partition_table/partition-table-flash + +build partition_table: phony esp-idf/partition_table/partition_table + +build partition_table-flash: phony esp-idf/partition_table/partition_table-flash + +build partition_table_bin: phony esp-idf/partition_table/partition_table_bin + +build sections.ld.in: phony esp-idf/esp_system/sections.ld.in + +build show-efuse-table: phony esp-idf/efuse/show-efuse-table + +build show_efuse_table: phony esp-idf/efuse/show_efuse_table + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build + +build all: phony bootloader app signal_generator.elf esp-idf/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/esp_driver_gpio/all esp-idf/esp_timer/all esp-idf/esp_pm/all esp-idf/mbedtls/all esp-idf/bootloader/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/esp_app_format/all esp-idf/esp_bootloader_format/all esp-idf/app_update/all esp-idf/esp_partition/all esp-idf/efuse/all esp-idf/bootloader_support/all esp-idf/esp_mm/all esp-idf/spi_flash/all esp-idf/esp_system/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/hal/all esp-idf/log/all esp-idf/heap/all esp-idf/soc/all esp-idf/esp_security/all esp-idf/esp_hw_support/all esp-idf/freertos/all esp-idf/newlib/all esp-idf/pthread/all esp-idf/cxx/all esp-idf/esp_driver_dac/all esp-idf/esp_driver_gptimer/all esp-idf/esp_ringbuf/all esp-idf/esp_driver_pcnt/all esp-idf/esp_driver_spi/all esp-idf/esp_driver_mcpwm/all esp-idf/esp_driver_ana_cmpr/all esp-idf/esp_driver_i2s/all esp-idf/sdmmc/all esp-idf/esp_driver_sdmmc/all esp-idf/esp_driver_sdspi/all esp-idf/esp_driver_sdio/all esp-idf/esp_driver_bitscrambler/all esp-idf/esp_driver_rmt/all esp-idf/esp_driver_tsens/all esp-idf/esp_driver_sdm/all esp-idf/esp_driver_i2c/all esp-idf/esp_driver_uart/all esp-idf/esp_driver_ledc/all esp-idf/esp_driver_parlio/all esp-idf/esp_driver_usb_serial_jtag/all esp-idf/esp_driver_twai/all esp-idf/driver/all esp-idf/esp_adc/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update + +build esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx + +build esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver + +build esp-idf/driver/all: phony esp-idf/driver/libdriver.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc + +build esp-idf/esp_adc/all: phony esp-idf/esp_adc/libesp_adc.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format + +build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr + +build esp-idf/esp_driver_ana_cmpr/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler + +build esp-idf/esp_driver_bitscrambler/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac + +build esp-idf/esp_driver_dac/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio + +build esp-idf/esp_driver_gpio/all: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer + +build esp-idf/esp_driver_gptimer/all: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c + +build esp-idf/esp_driver_i2c/all: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s + +build esp-idf/esp_driver_i2s/all: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc + +build esp-idf/esp_driver_ledc/all: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm + +build esp-idf/esp_driver_mcpwm/all: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio + +build esp-idf/esp_driver_parlio/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt + +build esp-idf/esp_driver_pcnt/all: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt + +build esp-idf/esp_driver_rmt/all: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio + +build esp-idf/esp_driver_sdio/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm + +build esp-idf/esp_driver_sdm/all: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc + +build esp-idf/esp_driver_sdmmc/all: phony esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi + +build esp-idf/esp_driver_sdspi/all: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi + +build esp-idf/esp_driver_spi/all: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens + +build esp-idf/esp_driver_tsens/all: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai + +build esp-idf/esp_driver_twai/all: phony esp-idf/esp_driver_twai/libesp_driver_twai.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart + +build esp-idf/esp_driver_uart/all: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag + +build esp-idf/esp_driver_usb_serial_jtag/all: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support + +build esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32s3/all esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all esp-idf/esp_hw_support/lowpower/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower + +build esp-idf/esp_hw_support/lowpower/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3 + +build esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3 + +build esp-idf/esp_hw_support/port/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm + +build esp-idf/esp_mm/all: phony esp-idf/esp_mm/libesp_mm.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition + +build esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm + +build esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf + +build esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security + +build esp-idf/esp_security/all: phony esp-idf/esp_security/libesp_security.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system + +build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a esp-idf/esp_system/port/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port + +build esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32s3/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3 + +build esp-idf/esp_system/port/soc/esp32s3/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer + +build esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos + +build esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap + +build esp-idf/heap/all: phony esp-idf/heap/libheap.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls + +build esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls + +build esp-idf/mbedtls/mbedtls/all: phony esp-idf/mbedtls/mbedtls/include/all esp-idf/mbedtls/mbedtls/3rdparty/all esp-idf/mbedtls/mbedtls/library/all esp-idf/mbedtls/mbedtls/pkgconfig/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty + +build esp-idf/mbedtls/mbedtls/3rdparty/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/all esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest + +build esp-idf/mbedtls/mbedtls/3rdparty/everest/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m + +build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include + +build esp-idf/mbedtls/mbedtls/include/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library + +build esp-idf/mbedtls/mbedtls/library/all: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig + +build esp-idf/mbedtls/mbedtls/pkgconfig/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib + +build esp-idf/newlib/all: phony esp-idf/newlib/libnewlib.a esp-idf/newlib/src/port/all + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port + +build esp-idf/newlib/src/port/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread + +build esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc + +build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa + +build esp-idf/xtensa/all: phony esp-idf/xtensa/libxtensa.a + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake D$:/ESP_IDF/v5.5.1/esp-idf/.git/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/app_update/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/cmock/CMock/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/cxx/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/sources.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_coex/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_phy/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ld/ld.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_wifi/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/json/cJSON/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/log/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/lwip/lwip/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/port/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/openthread/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/openthread/openthread/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/partitions_singleapp.csv D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/pthread/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/spiffs/spiffs/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/unity/unity/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/build.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/component.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/depgraph.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/dfu.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/idf.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/kconfig.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/ldgen.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/openocd.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project_description.json.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/targets.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/utilities.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/version.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/confgen.py D$:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/config.env.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/CMakeLists.txt E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/CMakeLists.txt E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake D$:/ESP_IDF/v5.5.1/esp-idf/.git/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD D$:/ESP_IDF/v5.5.1/esp-idf/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/app_update/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/cmock/CMock/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/cxx/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/driver/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/sources.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_coex/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_phy/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ld/ld.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esp_wifi/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/freertos/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/hal/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/json/cJSON/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/log/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/lwip/lwip/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c D$:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/port/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/openthread/lib/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/openthread/openthread/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/partitions_singleapp.csv D$:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/pthread/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/soc/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/spiffs/spiffs/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/unity/unity/.git D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/CMakeLists.txt D$:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/project_include.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/build.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/component.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/depgraph.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/dfu.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/idf.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/kconfig.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/ldgen.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/openocd.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/project_description.json.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/targets.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/toolchain-esp32s3.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/utilities.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/cmake/version.cmake D$:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/confgen.py D$:/ESP_IDF/v5.5.1/esp-idf/tools/kconfig_new/config.env.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake E$:/QX_Tech/ESP32_Test/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/CMakeLists.txt E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/CMakeLists.txt E$:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in: 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/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..2eb9eb4 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,62 @@ +# Install script for directory: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cmake_install.cmake") +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) + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") + file(WRITE "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/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..b0687df --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,3332 @@ +[ +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -o CMakeFiles\\signal_generator.elf.dir\\project_elf_src_esp32s3.c.obj -c E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build\\project_elf_src_esp32s3.c", + "file": "E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build\\project_elf_src_esp32s3.c", + "output": "CMakeFiles\\signal_generator.elf.dir\\project_elf_src_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\eri.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xt_trax.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_context.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_context.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_context.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_context.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr_asm.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_intr_asm.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_intr_asm.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr_asm.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_intr.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_intr.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_vectors.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_vectors.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\xtensa\\xtensa_vectors.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_vectors.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\dedic_gpio.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\dedic_gpio.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\dedic_gpio.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\dedic_gpio.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_pin_glitch_filter.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_pin_glitch_filter.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_pin_glitch_filter.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_pin_glitch_filter.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\system_time.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\system_time.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_locks.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_locks.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_trace.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_trace.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_impl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_impl.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj -c E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build\\x509_crt_bundle.S", + "file": "E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\build\\x509_crt_bundle.S", + "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", + "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\block_cipher.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\block_cipher.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves_new.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves_new.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_ecc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_ecc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ffdh.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ffdh.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\D_\\ESP_IDF\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\"signal_generator\\\" -DPROJECT_VER=\\\"1\\\" -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", + "output": "esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_ops.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_ops.c", + "output": "esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", + "output": "esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_partition\\partition.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_partition\\partition.c", + "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_partition\\partition_target.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_partition\\partition_target.c", + "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_table.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_table.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_fields.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_rtc_calib.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_rtc_calib.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\esp32s3\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32s3\\esp_efuse_utility.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\secure_boot_secure_features.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\secure_boot_secure_features.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32s3\\secure_boot_secure_features.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32s3\\secure_boot_secure_features.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32s3\\ext_mem_layout.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\port\\esp32s3\\ext_mem_layout.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\port\\esp32s3\\ext_mem_layout.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32s3\\ext_mem_layout.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_msync.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_msync.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_msync.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_msync.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_utils.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\heap_align_hw.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_mm\\heap_align_hw.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp32s3\\spi_flash_oct_flash_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\esp32s3\\spi_flash_oct_flash_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\esp32s3\\spi_flash_oct_flash_init.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp32s3\\spi_flash_oct_flash_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_hpm_enable.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_hpm_enable.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_hpm_enable.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_hpm_enable.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\cache_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\cache_utils.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_ops.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_ops.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_api.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_api.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_api.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_api.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_spi_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_spi_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_app.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_app.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_noos.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_noos.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\crosscore_int.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\crosscore_int.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_ipc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_ipc.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system_console.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system_console.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system_console.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system_console.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\int_wdt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\int_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\panic.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\panic.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\startup.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\startup.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\startup_funcs.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\startup_funcs.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\system_time.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\system_time.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\stack_check.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\stack_check.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\ubsan.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\ubsan.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\xt_wdt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\xt_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\cpu_start.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\cpu_start.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\panic_handler.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\panic_handler.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\image_process.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\image_process.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_ipc_isr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\esp_ipc_isr.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\esp_ipc_isr.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_ipc_isr.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_port.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_port.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_port.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_port.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_handler.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_handler.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_routines.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_routines.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_arch.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_arch.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_handler_asm.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_handler_asm.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack_asm.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack_asm.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers_asm.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers_asm.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_stubs.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_stubs.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\trax.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\trax.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\trax.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\trax.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\highint_hdl.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\highint_hdl.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\highint_hdl.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\highint_hdl.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\clk.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\clk.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\clk.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\clk.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\reset_reason.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\reset_reason.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\reset_reason.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\reset_reason.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\system_internal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\system_internal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\system_internal.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\system_internal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\cache_err_int.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\cache_err_int.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\cache_err_int.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\cache_err_int.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\apb_backup_dma.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\apb_backup_dma.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32s3\\apb_backup_dma.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32s3\\apb_backup_dma.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/app_update/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_esp32s2_esp32s3.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_esp32s2_esp32s3.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_cache_writeback_esp32s3.S", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_cache_writeback_esp32s3.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mpu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\efuse_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\color_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\color_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\clk_tree_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\clk_tree_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\clk_tree_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\clk_tree_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\systimer_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\systimer_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\systimer_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\systimer_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\uart_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\uart_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\uart_hal_iram.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\uart_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\gpio_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\gpio_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\rtc_io_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\rtc_io_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\timer_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\timer_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal_iram.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal_iram.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\rmt_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\rmt_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\pcnt_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\pcnt_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mcpwm_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mcpwm_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uhci_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\uhci_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\uhci_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uhci_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_sja1000.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\twai_hal_sja1000.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\twai_hal_sja1000.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_sja1000.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_top.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_top.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_top.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_top.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_ahb_v1.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_ahb_v1.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_ahb_v1.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_ahb_v1.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\i2s_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\i2s_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\sdm_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\sdm_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdmmc_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\sdmmc_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\sdmmc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdmmc_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\adc_hal_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\adc_hal_common.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\adc_oneshot_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\adc_oneshot_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\adc_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\adc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lcd_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\lcd_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\lcd_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lcd_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpi_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mpi_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\mpi_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpi_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\sha_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\sha_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\aes_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\aes_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\brownout_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\brownout_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_hal_iram.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hd_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hd_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_gpspi.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_gpspi.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\hmac_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\hmac_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\ds_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\ds_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cam_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\cam_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\cam_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cam_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_serial_jtag_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\usb_serial_jtag_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\usb_serial_jtag_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_serial_jtag_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_dwc_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\usb_dwc_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\usb_dwc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_dwc_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_wrap_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\usb_wrap_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\usb_wrap_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_wrap_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\touch_sensor_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\touch_sensor_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\touch_sensor_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\touch_sensor_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sensor_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\touch_sensor_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\touch_sensor_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sensor_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sens_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\touch_sens_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\touch_sens_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\touch_sens_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\xt_wdt_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\xt_wdt_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\xt_wdt_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\xt_wdt_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\rtc_cntl_hal.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\rtc_cntl_hal.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\hal\\esp32s3\\rtc_cntl_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32s3\\rtc_cntl_hal.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_lock.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_lock.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\util.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\os\\util.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\os\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\util.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_write.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_write.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\log_level.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\log_level.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_base.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_base.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\heap_caps.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\heap_caps.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_init.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\multi_heap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\multi_heap.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\\tlsf.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\tlsf\\tlsf.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\tlsf\\tlsf.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\\tlsf.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/private_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32s3\\memory_layout.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\port\\esp32s3\\memory_layout.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\heap\\port\\esp32s3\\memory_layout.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32s3\\memory_layout.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\interrupts.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\interrupts.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gpio_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\uart_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\uart_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\adc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\adc_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\dedic_gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\dedic_gpio_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\gdma_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\gdma_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\spi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\spi_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\ledc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\ledc_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\pcnt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\pcnt_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rmt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rmt_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdm_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2s_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2s_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\i2c_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\i2c_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\temperature_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\temperature_sensor_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\timer_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\timer_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\lcd_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\lcd_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mcpwm_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mcpwm_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\mpi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\mpi_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\sdmmc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\sdmmc_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\touch_sensor_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\touch_sensor_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\twai_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\twai_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\wdt_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\wdt_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\usb_dwc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\usb_dwc_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\rtc_io_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\rtc_io_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\cam_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\cam_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\soc\\esp32s3\\power_supply_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32s3\\power_supply_periph.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\init.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_hmac.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_hmac.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_hmac.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_hmac.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_ds.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_ds.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_ds.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_ds.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_cpu_intr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_cpu_intr.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\cpu_region_protect.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\cpu_region_protect.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clk.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\hw_random.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\hw_random.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mac_addr.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mac_addr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\revision.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\revision.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\rtc_module.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\rtc_module.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\io_mux.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\io_mux.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\io_mux.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\io_mux.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_clk_tree.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_clk_tree.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_clk_tree.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_clk_tree.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_dma_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_dma_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_link.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_link.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_link.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_link.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_utils.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_utils.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_utils.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_console.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_console.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_console.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_console.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_usb.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_usb.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_usb.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_usb.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_event.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_event.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_event.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_event.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\deprecated\\gdma_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\deprecated\\gdma_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\deprecated\\gdma_legacy.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\deprecated\\gdma_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_async_memcpy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_async_memcpy.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_gdma.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\async_memcpy_gdma.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\async_memcpy_gdma.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_gdma.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\systimer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\systimer.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\systimer.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\systimer.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\mspi_timing_tuning.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\mspi_timing_tuning.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\mspi_timing_tuning.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\mspi_timing_tuning.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clock_output.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clock_output.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\brownout.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\power_supply\\brownout.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\power_supply\\brownout.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\brownout.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_clk_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_clk_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_sleep.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_sleep.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\rtc_time.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\rtc_time.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\chip_info.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\chip_info.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\sar_periph_ctrl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\sar_periph_ctrl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\sar_periph_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\sar_periph_ctrl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_memprot.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_memprot.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32s3\\esp_memprot.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32s3\\esp_memprot.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_memprot_conv.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_memprot_conv.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_memprot_conv.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_memprot_conv.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_config.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_config.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_config.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_config.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_by_mspi_delay.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_by_mspi_delay.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_by_mspi_delay.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\port\\esp32s3\\mspi_timing_by_mspi_delay.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32s3\\sleep_cpu.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32s3\\sleep_cpu.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32s3\\sleep_cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32s3\\sleep_cpu.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\heap_idf.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\heap_idf.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\app_startup.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\app_startup.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\port_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\port_common.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\port_systick.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\port_systick.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\port.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\port.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_compatibility.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_compatibility.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\init.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\abort.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\abort.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\abort.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\abort.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\assert.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\assert.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\assert.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\assert.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\heap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\heap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\heap.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\heap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\locks.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\locks.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\locks.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\locks.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\poll.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\poll.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\poll.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\poll.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\pthread.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\pthread.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\pthread.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\pthread.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\random.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\random.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\random.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\random.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\getentropy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\getentropy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\getentropy.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\getentropy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\termios.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\termios.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\termios.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\termios.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\stdatomic.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\stdatomic.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\stdatomic.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\stdatomic.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\time.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\time.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\time.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\time.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\sysconf.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\sysconf.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\sysconf.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\sysconf.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\realpath.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\realpath.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\realpath.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\realpath.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\scandir.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\scandir.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\scandir.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\scandir.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\syscalls.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\syscalls.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\syscalls.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\syscalls.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_syscalls.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_syscalls.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_syscalls.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_syscalls.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\port\\esp_time_impl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\port\\esp_time_impl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\port\\esp_time_impl.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\port\\esp_time_impl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\flockfile.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\flockfile.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\flockfile.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\flockfile.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_init.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/priv_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\newlib_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\newlib_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\newlib\\src\\newlib_init.c", + "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\newlib_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/pthread/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\cxx\\cxx_init.cpp", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\cxx\\cxx_init.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", + "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", + "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "output": "esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", + "output": "esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave_hd.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave_hd.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave_hd.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave_hd.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_tdm.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_tdm.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_tdm.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_tdm.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sdmmc_transaction.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdmmc\\src\\sdmmc_transaction.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdmmc\\src\\sdmmc_transaction.c", + "output": "esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sdmmc_transaction.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sdmmc_host.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdmmc\\src\\sdmmc_host.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdmmc\\src\\sdmmc_host.c", + "output": "esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sdmmc_host.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_bytes.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_bytes.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_bytes.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_bytes.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_copy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_copy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_copy.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_copy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_simple.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_simple.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_simple.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_simple.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor.c", + "output": "esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", + "output": "esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_wakeup.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart_wakeup.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart_wakeup.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_wakeup.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uhci.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uhci.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uhci.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uhci.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", + "output": "esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag.c", + "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_connection_monitor.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_connection_monitor.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_connection_monitor.c", + "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_connection_monitor.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai.c", + "output": "esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai_onchip.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai_onchip.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai_onchip.c", + "output": "esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai_onchip.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\i2c\\i2c.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\i2c\\i2c.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rtc_temperature_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rtc_temperature_legacy.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\touch_sensor_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\touch_sensor\\touch_sensor_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\touch_sensor\\touch_sensor_common.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\touch_sensor_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\esp32s3\\touch_sensor.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\touch_sensor\\esp32s3\\touch_sensor.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\touch_sensor\\esp32s3\\touch_sensor.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\esp32s3\\touch_sensor.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\twai\\twai.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\driver\\twai\\twai.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_common.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_common.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_cali.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_cali.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali_curve_fitting.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali_curve_fitting.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp_adc_cal_common_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\deprecated\\esp_adc_cal_common_legacy.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp_adc_cal_common_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_monitor.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_monitor.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_monitor.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_monitor.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\gdma\\adc_dma.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\gdma\\adc_dma.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\gdma\\adc_dma.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\gdma\\adc_dma.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_filter.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_filter.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\adc_filter.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_filter.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32s3\\curve_fitting_coefficients.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\esp32s3\\curve_fitting_coefficients.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\esp32s3\\curve_fitting_coefficients.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32s3\\curve_fitting_coefficients.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp32s3\\esp_adc_cal_legacy.c.obj -c D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\deprecated\\esp32s3\\esp_adc_cal_legacy.c", + "file": "D:\\ESP_IDF\\v5.5.1\\esp-idf\\components\\esp_adc\\deprecated\\esp32s3\\esp_adc_cal_legacy.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\deprecated\\esp32s3\\esp_adc_cal_legacy.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\dac_continuous_example_main.c.obj -c E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\main\\dac_continuous_example_main.c", + "file": "E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\main\\dac_continuous_example_main.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\dac_continuous_example_main.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\dac_continuous_example_dma.c.obj -c E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\main\\dac_continuous_example_dma.c", + "file": "E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\main\\dac_continuous_example_dma.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\dac_continuous_example_dma.c.obj" +}, +{ + "directory": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "command": "E:\\QX_Tech\\ESP32_Test\\tools\\xtensa-esp-elf\\esp-14.2.0_20241119\\xtensa-esp-elf\\bin\\xtensa-esp32s3-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/config -IE:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main -ID:/ESP_IDF/v5.5.1/esp-idf/components/newlib/platform_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/config/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -ID:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/. -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf -ID:/ESP_IDF/v5.5.1/esp-idf/components/log/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/register -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/platform_port/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/hal/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3/include/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/esp32s3 -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/include/private -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/deprecated_include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/interface -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/include -ID:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/include -mlongcalls -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-builtin-stpcpy -fno-builtin-strncpy -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=E:/QX_Tech/Simulator/ESP32_TEST/signal_generator=. -fmacro-prefix-map=D:/ESP_IDF/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\dac_continuous_example_timer.c.obj -c E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\main\\dac_continuous_example_timer.c", + "file": "E:\\QX_Tech\\Simulator\\ESP32_TEST\\signal_generator\\main\\dac_continuous_example_timer.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\dac_continuous_example_timer.c.obj" +} +] \ No newline at end of file diff --git a/build/config.env b/build/config.env new file mode 100644 index 0000000..2ee1875 --- /dev/null +++ b/build/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/heap/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/log/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/soc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/driver/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/sdkconfig.rename.esp32s3;D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/sdkconfig.rename;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/sdkconfig.rename", + "IDF_TARGET": "esp32s3", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "5.5.1", + "IDF_ENV_FPGA": "", + "IDF_PATH": "D:/ESP_IDF/v5.5.1/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/kconfigs_projbuild.in" +} diff --git a/build/config/kconfig_menus.json b/build/config/kconfig_menus.json new file mode 100644 index 0000000..4f56a4d --- /dev/null +++ b/build/config/kconfig_menus.json @@ -0,0 +1,15884 @@ +[ + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SUPPORTED", + "name": "SOC_ADC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORTED", + "name": "SOC_UART_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_SUPPORTED", + "name": "SOC_PCNT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_SUPPORTED", + "name": "SOC_PHY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORTED", + "name": "SOC_WIFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTED", + "name": "SOC_TWAI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_SUPPORTED", + "name": "SOC_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UHCI_SUPPORTED", + "name": "SOC_UHCI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORTED", + "name": "SOC_AHB_GDMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPTIMER_SUPPORTED", + "name": "SOC_GPTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_SUPPORTED", + "name": "SOC_LCDCAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_SUPPORTED", + "name": "SOC_LCDCAM_CAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_LCD_SUPPORTED", + "name": "SOC_LCDCAM_I80_LCD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_LCD_SUPPORTED", + "name": "SOC_LCDCAM_RGB_LCD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SUPPORTED", + "name": "SOC_MCPWM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDICATED_GPIO_SUPPORTED", + "name": "SOC_DEDICATED_GPIO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_SUPPORT_WRAP", + "name": "SOC_CACHE_SUPPORT_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_SUPPORTED", + "name": "SOC_ULP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_FSM_SUPPORTED", + "name": "SOC_ULP_FSM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RISCV_COPROC_SUPPORTED", + "name": "SOC_RISCV_COPROC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BT_SUPPORTED", + "name": "SOC_BT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_OTG_SUPPORTED", + "name": "SOC_USB_OTG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "name": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CCOMP_TIMER_SUPPORTED", + "name": "SOC_CCOMP_TIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ASYNC_MEMCPY_SUPPORTED", + "name": "SOC_ASYNC_MEMCPY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORTS_SECURE_DL_MODE", + "name": "SOC_SUPPORTS_SECURE_DL_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SUPPORTED", + "name": "SOC_EFUSE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_HOST_SUPPORTED", + "name": "SOC_SDMMC_HOST_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_FAST_MEM_SUPPORTED", + "name": "SOC_RTC_FAST_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_SLOW_MEM_SUPPORTED", + "name": "SOC_RTC_SLOW_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_MEM_SUPPORTED", + "name": "SOC_RTC_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PSRAM_DMA_CAPABLE", + "name": "SOC_PSRAM_DMA_CAPABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XT_WDT_SUPPORTED", + "name": "SOC_XT_WDT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTED", + "name": "SOC_I2S_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORTED", + "name": "SOC_RMT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_SUPPORTED", + "name": "SOC_SDM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPSPI_SUPPORTED", + "name": "SOC_GPSPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORTED", + "name": "SOC_LEDC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORTED", + "name": "SOC_I2C_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_SUPPORTED", + "name": "SOC_SYSTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_COEXISTENCE", + "name": "SOC_SUPPORT_COEXISTENCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMP_SENSOR_SUPPORTED", + "name": "SOC_TEMP_SENSOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORTED", + "name": "SOC_AES_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_SUPPORTED", + "name": "SOC_MPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORTED", + "name": "SOC_SHA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HMAC_SUPPORTED", + "name": "SOC_HMAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DIG_SIGN_SUPPORTED", + "name": "SOC_DIG_SIGN_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENC_SUPPORTED", + "name": "SOC_FLASH_ENC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_SUPPORTED", + "name": "SOC_SECURE_BOOT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_SUPPORTED", + "name": "SOC_MEMPROT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_SUPPORTED", + "name": "SOC_TOUCH_SENSOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BOD_SUPPORTED", + "name": "SOC_BOD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_TREE_SUPPORTED", + "name": "SOC_CLK_TREE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_SUPPORTED", + "name": "SOC_MPU_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WDT_SUPPORTED", + "name": "SOC_WDT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_FLASH_SUPPORTED", + "name": "SOC_SPI_FLASH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RNG_SUPPORTED", + "name": "SOC_RNG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LIGHT_SLEEP_SUPPORTED", + "name": "SOC_LIGHT_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEEP_SLEEP_SUPPORTED", + "name": "SOC_DEEP_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_PERIPH_SHARE_INTERRUPT", + "name": "SOC_LP_PERIPH_SHARE_INTERRUPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORTED", + "name": "SOC_PM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SIMD_INSTRUCTION_SUPPORTED", + "name": "SOC_SIMD_INSTRUCTION_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_40M", + "name": "SOC_XTAL_SUPPORT_40M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APPCPU_HAS_CLOCK_GATING_BUG", + "name": "SOC_APPCPU_HAS_CLOCK_GATING_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_CTRL_SUPPORTED", + "name": "SOC_ADC_RTC_CTRL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIG_CTRL_SUPPORTED", + "name": "SOC_ADC_DIG_CTRL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_ARBITER_SUPPORTED", + "name": "SOC_ADC_ARBITER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MONITOR_SUPPORTED", + "name": "SOC_ADC_MONITOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DMA_SUPPORTED", + "name": "SOC_ADC_DMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PERIPH_NUM", + "name": "SOC_ADC_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MAX_CHANNEL_NUM", + "name": "SOC_ADC_MAX_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_ATTEN_NUM", + "name": "SOC_ADC_ATTEN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_CONTROLLER_NUM", + "name": "SOC_ADC_DIGI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PATT_LEN_MAX", + "name": "SOC_ADC_PATT_LEN_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MIN_BITWIDTH", + "name": "SOC_ADC_DIGI_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MAX_BITWIDTH", + "name": "SOC_ADC_DIGI_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_RESULT_BYTES", + "name": "SOC_ADC_DIGI_RESULT_BYTES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "name": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_IIR_FILTER_NUM", + "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MONITOR_NUM", + "name": "SOC_ADC_DIGI_MONITOR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MIN_BITWIDTH", + "name": "SOC_ADC_RTC_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MAX_BITWIDTH", + "name": "SOC_ADC_RTC_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SHARED_POWER", + "name": "SOC_ADC_SHARED_POWER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_APB_BACKUP_DMA", + "name": "SOC_APB_BACKUP_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BROWNOUT_RESET_SUPPORTED", + "name": "SOC_BROWNOUT_RESET_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_WRITEBACK_SUPPORTED", + "name": "SOC_CACHE_WRITEBACK_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_FREEZE_SUPPORTED", + "name": "SOC_CACHE_FREEZE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "name": "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_CORES_NUM", + "name": "SOC_CPU_CORES_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_INTR_NUM", + "name": "SOC_CPU_INTR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_HAS_FPU", + "name": "SOC_CPU_HAS_FPU", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_CPU_HAS_MULTIPLE_CORES", + "name": "SOC_HP_CPU_HAS_MULTIPLE_CORES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_BREAKPOINTS_NUM", + "name": "SOC_CPU_BREAKPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINTS_NUM", + "name": "SOC_CPU_WATCHPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SIMD_PREFERRED_DATA_ALIGNMENT", + "name": "SOC_SIMD_PREFERRED_DATA_ALIGNMENT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_VERSION", + "name": "SOC_AHB_GDMA_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_NUM_GROUPS_MAX", + "name": "SOC_GDMA_NUM_GROUPS_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP", + "name": "SOC_GDMA_PAIRS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AHB_GDMA_SUPPORT_PSRAM", + "name": "SOC_AHB_GDMA_SUPPORT_PSRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PORT", + "name": "SOC_GPIO_PORT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PIN_COUNT", + "name": "SOC_GPIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", + "name": "SOC_GPIO_FILTER_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "name": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_VALID_GPIO_MASK", + "name": "SOC_GPIO_VALID_GPIO_MASK", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_IN_RANGE_MAX", + "name": "SOC_GPIO_IN_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_OUT_RANGE_MAX", + "name": "SOC_GPIO_OUT_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "name": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "name": "SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE", + "name": "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_NUM", + "name": "SOC_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_I2C_NUM", + "name": "SOC_HP_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_FIFO_LEN", + "name": "SOC_I2C_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_CMD_REG_NUM", + "name": "SOC_I2C_CMD_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_SLAVE", + "name": "SOC_I2C_SUPPORT_SLAVE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_XTAL", + "name": "SOC_I2C_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_RTC", + "name": "SOC_I2C_SUPPORT_RTC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_10BIT_ADDR", + "name": "SOC_I2C_SUPPORT_10BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_NUM", + "name": "SOC_I2S_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_HW_VERSION_2", + "name": "SOC_I2S_HW_VERSION_2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_XTAL", + "name": "SOC_I2S_SUPPORTS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PLL_F160M", + "name": "SOC_I2S_SUPPORTS_PLL_F160M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM", + "name": "SOC_I2S_SUPPORTS_PCM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM", + "name": "SOC_I2S_SUPPORTS_PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_TX", + "name": "SOC_I2S_SUPPORTS_PDM_TX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM2PDM", + "name": "SOC_I2S_SUPPORTS_PCM2PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_RX", + "name": "SOC_I2S_SUPPORTS_PDM_RX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM2PCM", + "name": "SOC_I2S_SUPPORTS_PDM2PCM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_PDM_MAX_TX_LINES", + "name": "SOC_I2S_PDM_MAX_TX_LINES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_PDM_MAX_RX_LINES", + "name": "SOC_I2S_PDM_MAX_RX_LINES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_TDM", + "name": "SOC_I2S_SUPPORTS_TDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_APB_CLOCK", + "name": "SOC_LEDC_SUPPORT_APB_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_NUM", + "name": "SOC_LEDC_TIMER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_CHANNEL_NUM", + "name": "SOC_LEDC_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_BIT_WIDTH", + "name": "SOC_LEDC_TIMER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_FADE_STOP", + "name": "SOC_LEDC_SUPPORT_FADE_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GROUPS", + "name": "SOC_MCPWM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_OPERATORS_PER_GROUP", + "name": "SOC_MCPWM_OPERATORS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "name": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "name": "SOC_MCPWM_GENERATORS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "name": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "name": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "name": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "name": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "name": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "name": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_PERIPH_NUM", + "name": "SOC_MMU_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", + "name": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_MIN_REGION_SIZE", + "name": "SOC_MPU_MIN_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGIONS_MAX_NUM", + "name": "SOC_MPU_REGIONS_MAX_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGION_RO_SUPPORTED", + "name": "SOC_MPU_REGION_RO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGION_WO_SUPPORTED", + "name": "SOC_MPU_REGION_WO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_GROUPS", + "name": "SOC_PCNT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_UNITS_PER_GROUP", + "name": "SOC_PCNT_UNITS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_CHANNELS_PER_UNIT", + "name": "SOC_PCNT_CHANNELS_PER_UNIT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_THRES_POINT_PER_UNIT", + "name": "SOC_PCNT_THRES_POINT_PER_UNIT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_GROUPS", + "name": "SOC_RMT_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_CHANNELS_PER_GROUP", + "name": "SOC_RMT_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_PINGPONG", + "name": "SOC_RMT_SUPPORT_RX_PINGPONG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "name": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_XTAL", + "name": "SOC_RMT_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_RC_FAST", + "name": "SOC_RMT_SUPPORT_RC_FAST", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_APB", + "name": "SOC_RMT_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORT_DMA", + "name": "SOC_RMT_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_SUPPORTED", + "name": "SOC_LCD_I80_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_SUPPORTED", + "name": "SOC_LCD_RGB_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_BUSES", + "name": "SOC_LCD_I80_BUSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_PANELS", + "name": "SOC_LCD_RGB_PANELS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_BUS_WIDTH", + "name": "SOC_LCD_I80_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_RGB_DATA_WIDTH", + "name": "SOC_LCD_RGB_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_SUPPORT_RGB_YUV_CONV", + "name": "SOC_LCD_SUPPORT_RGB_YUV_CONV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_NUM_BUSES", + "name": "SOC_LCDCAM_I80_NUM_BUSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_I80_BUS_WIDTH", + "name": "SOC_LCDCAM_I80_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_NUM_PANELS", + "name": "SOC_LCDCAM_RGB_NUM_PANELS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_RGB_DATA_WIDTH", + "name": "SOC_LCDCAM_RGB_DATA_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "name": "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "name": "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "name": "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_PIN_COUNT", + "name": "SOC_RTCIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "name": "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_HOLD_SUPPORTED", + "name": "SOC_RTCIO_HOLD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_WAKE_SUPPORTED", + "name": "SOC_RTCIO_WAKE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "name": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_GROUPS", + "name": "SOC_SDM_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CHANNELS_PER_GROUP", + "name": "SOC_SDM_CHANNELS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_CLK_SUPPORT_APB", + "name": "SOC_SDM_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_NUM", + "name": "SOC_SPI_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_CS_NUM", + "name": "SOC_SPI_MAX_CS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_DDRCLK", + "name": "SOC_SPI_SUPPORT_DDRCLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CD_SIG", + "name": "SOC_SPI_SUPPORT_CD_SIG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_APB", + "name": "SOC_SPI_SUPPORT_CLK_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_XTAL", + "name": "SOC_SPI_SUPPORT_CLK_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", + "name": "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_IS_INDEPENDENT", + "name": "SOC_MEMSPI_IS_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_PRE_DIVIDER", + "name": "SOC_SPI_MAX_PRE_DIVIDER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_OCT", + "name": "SOC_SPI_SUPPORT_OCT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_SUPPORTED", + "name": "SOC_SPI_SCT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_REG_NUM", + "name": "SOC_SPI_SCT_REG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPIRAM_SUPPORTED", + "name": "SOC_SPIRAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPIRAM_XIP_SUPPORTED", + "name": "SOC_SPIRAM_XIP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_COUNTER_NUM", + "name": "SOC_SYSTIMER_COUNTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_NUM", + "name": "SOC_SYSTIMER_ALARM_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_LO", + "name": "SOC_SYSTIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_BIT_WIDTH_HI", + "name": "SOC_SYSTIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_FIXED_DIVIDER", + "name": "SOC_SYSTIMER_FIXED_DIVIDER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_INT_LEVEL", + "name": "SOC_SYSTIMER_INT_LEVEL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUPS", + "name": "SOC_TIMER_GROUPS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_SUPPORT_APB", + "name": "SOC_TIMER_GROUP_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_LO", + "name": "SOC_LP_TIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_HI", + "name": "SOC_LP_TIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_VERSION", + "name": "SOC_TOUCH_SENSOR_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_NUM", + "name": "SOC_TOUCH_SENSOR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_MIN_CHAN_ID", + "name": "SOC_TOUCH_MIN_CHAN_ID", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_MAX_CHAN_ID", + "name": "SOC_TOUCH_MAX_CHAN_ID", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_BENCHMARK", + "name": "SOC_TOUCH_SUPPORT_BENCHMARK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "name": "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_WATERPROOF", + "name": "SOC_TOUCH_SUPPORT_WATERPROOF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_PROX_SENSING", + "name": "SOC_TOUCH_SUPPORT_PROX_SENSING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "name": "SOC_TOUCH_SUPPORT_DENOISE_CHAN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "name": "SOC_TOUCH_PROXIMITY_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED", + "name": "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SAMPLE_CFG_NUM", + "name": "SOC_TOUCH_SAMPLE_CFG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_CONTROLLER_NUM", + "name": "SOC_TWAI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_MASK_FILTER_NUM", + "name": "SOC_TWAI_MASK_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_CLK_SUPPORT_APB", + "name": "SOC_TWAI_CLK_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MIN", + "name": "SOC_TWAI_BRP_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_BRP_MAX", + "name": "SOC_TWAI_BRP_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTS_RX_STATUS", + "name": "SOC_TWAI_SUPPORTS_RX_STATUS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_NUM", + "name": "SOC_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_HP_NUM", + "name": "SOC_UART_HP_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_FIFO_LEN", + "name": "SOC_UART_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_BITRATE_MAX", + "name": "SOC_UART_BITRATE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_WAKEUP_INT", + "name": "SOC_UART_SUPPORT_WAKEUP_INT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_APB_CLK", + "name": "SOC_UART_SUPPORT_APB_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_RTC_CLK", + "name": "SOC_UART_SUPPORT_RTC_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_XTAL_CLK", + "name": "SOC_UART_SUPPORT_XTAL_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "name": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UHCI_NUM", + "name": "SOC_UHCI_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_USB_OTG_PERIPH_NUM", + "name": "SOC_USB_OTG_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_DMA", + "name": "SOC_SHA_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_RESUME", + "name": "SOC_SHA_SUPPORT_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_GDMA", + "name": "SOC_SHA_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA1", + "name": "SOC_SHA_SUPPORT_SHA1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA224", + "name": "SOC_SHA_SUPPORT_SHA224", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA256", + "name": "SOC_SHA_SUPPORT_SHA256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA384", + "name": "SOC_SHA_SUPPORT_SHA384", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512", + "name": "SOC_SHA_SUPPORT_SHA512", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_224", + "name": "SOC_SHA_SUPPORT_SHA512_224", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_256", + "name": "SOC_SHA_SUPPORT_SHA512_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512_T", + "name": "SOC_SHA_SUPPORT_SHA512_T", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_MEM_BLOCKS_NUM", + "name": "SOC_MPI_MEM_BLOCKS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_OPERATIONS_NUM", + "name": "SOC_MPI_OPERATIONS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RSA_MAX_BIT_LEN", + "name": "SOC_RSA_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_DMA", + "name": "SOC_AES_SUPPORT_DMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_GDMA", + "name": "SOC_AES_GDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_128", + "name": "SOC_AES_SUPPORT_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_256", + "name": "SOC_AES_SUPPORT_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT0_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT0_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "name": "SOC_PM_SUPPORT_WIFI_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_BT_WAKEUP", + "name": "SOC_PM_SUPPORT_BT_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "name": "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_CPU_PD", + "name": "SOC_PM_SUPPORT_CPU_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_TAGMEM_PD", + "name": "SOC_PM_SUPPORT_TAGMEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_PERIPH_PD", + "name": "SOC_PM_SUPPORT_RTC_PERIPH_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RC_FAST_PD", + "name": "SOC_PM_SUPPORT_RC_FAST_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_VDDSDIO_PD", + "name": "SOC_PM_SUPPORT_VDDSDIO_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MAC_BB_PD", + "name": "SOC_PM_SUPPORT_MAC_BB_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MODEM_PD", + "name": "SOC_PM_SUPPORT_MODEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "name": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "name": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "name": "SOC_PM_CPU_RETENTION_BY_RTCCNTL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "name": "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_PD_BY_SW", + "name": "SOC_PM_MODEM_PD_BY_SW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC_FAST_D256_SUPPORTED", + "name": "SOC_CLK_RC_FAST_D256_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "name": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "name": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_XTAL32K_SUPPORTED", + "name": "SOC_CLK_XTAL32K_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", + "name": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "name": "SOC_EFUSE_DIS_DOWNLOAD_DCACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_HARD_DIS_JTAG", + "name": "SOC_EFUSE_HARD_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_USB_JTAG", + "name": "SOC_EFUSE_DIS_USB_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SOFT_DIS_JTAG", + "name": "SOC_EFUSE_SOFT_DIS_JTAG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_DIRECT_BOOT", + "name": "SOC_EFUSE_DIS_DIRECT_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_DIS_ICACHE", + "name": "SOC_EFUSE_DIS_ICACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V2_RSA", + "name": "SOC_SECURE_BOOT_V2_RSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTION_XTS_AES_256", + "name": "SOC_FLASH_ENCRYPTION_XTS_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "name": "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMPROT_MEM_ALIGN_SIZE", + "name": "SOC_MEMPROT_MEM_ALIGN_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_DIG_REGS_MEM_SIZE", + "name": "SOC_PHY_DIG_REGS_MEM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MAC_BB_PD_MEM_SIZE", + "name": "SOC_MAC_BB_PD_MEM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "name": "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "name": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "name": "SOC_SPI_MEM_SUPPORT_TIMING_TUNING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "name": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_WRAP", + "name": "SOC_SPI_MEM_SUPPORT_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "name": "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "name": "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "name": "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_COEX_HW_PTI", + "name": "SOC_COEX_HW_PTI", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_ADVANCE", + "name": "SOC_EXTERNAL_COEX_ADVANCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_USE_GPIO_MATRIX", + "name": "SOC_SDMMC_USE_GPIO_MATRIX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_NUM_SLOTS", + "name": "SOC_SDMMC_NUM_SLOTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_SUPPORT_XTAL_CLOCK", + "name": "SOC_SDMMC_SUPPORT_XTAL_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_DELAY_PHASE_NUM", + "name": "SOC_SDMMC_DELAY_PHASE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_HW_TSF", + "name": "SOC_WIFI_HW_TSF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_FTM_SUPPORT", + "name": "SOC_WIFI_FTM_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_GCMP_SUPPORT", + "name": "SOC_WIFI_GCMP_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_WAPI_SUPPORT", + "name": "SOC_WIFI_WAPI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_CSI_SUPPORT", + "name": "SOC_WIFI_CSI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_MESH_SUPPORT", + "name": "SOC_WIFI_MESH_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "name": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", + "name": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_SUPPORTED", + "name": "SOC_BLE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_MESH_SUPPORTED", + "name": "SOC_BLE_MESH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_50_SUPPORTED", + "name": "SOC_BLE_50_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLUFI_SUPPORTED", + "name": "SOC_BLUFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_HAS_ADC", + "name": "SOC_ULP_HAS_ADC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_COMBO_MODULE", + "name": "SOC_PHY_COMBO_MODULE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "name": "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_PERIPH_NUM", + "name": "SOC_LCDCAM_CAM_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCDCAM_CAM_DATA_WIDTH_MAX", + "name": "SOC_LCDCAM_CAM_DATA_WIDTH_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CMAKE", + "name": "IDF_CMAKE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "- This option is for internal use only.\n- Enabling this option will help enable all FPGA support so as to\n run ESP-IDF on an FPGA. This can help reproduce some issues that\n only happens on FPGA condition, or when you have to burn some\n efuses multiple times.", + "id": "IDF_ENV_FPGA", + "name": "IDF_ENV_FPGA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "- This option is ONLY used when doing new chip bringup.\n- This option will only enable necessary hw / sw settings for running\n a hello_world application.", + "id": "IDF_ENV_BRINGUP", + "name": "IDF_ENV_BRINGUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CI_BUILD", + "name": "IDF_CI_BUILD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_DOC_BUILD", + "name": "IDF_DOC_BUILD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN", + "name": "IDF_TOOLCHAIN", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN_CLANG", + "name": "IDF_TOOLCHAIN_CLANG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN_GCC", + "name": "IDF_TOOLCHAIN_GCC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_RISCV", + "name": "IDF_TARGET_ARCH_RISCV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_XTENSA", + "name": "IDF_TARGET_ARCH_XTENSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH", + "name": "IDF_TARGET_ARCH", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET", + "name": "IDF_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_INIT_VERSION", + "name": "IDF_INIT_VERSION", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32", + "name": "IDF_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S2", + "name": "IDF_TARGET_ESP32S2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S3", + "name": "IDF_TARGET_ESP32S3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C3", + "name": "IDF_TARGET_ESP32C3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C2", + "name": "IDF_TARGET_ESP32C2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C6", + "name": "IDF_TARGET_ESP32C6", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C5", + "name": "IDF_TARGET_ESP32C5", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32P4", + "name": "IDF_TARGET_ESP32P4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H2", + "name": "IDF_TARGET_ESP32H2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C61", + "name": "IDF_TARGET_ESP32C61", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H21", + "name": "IDF_TARGET_ESP32H21", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H4", + "name": "IDF_TARGET_ESP32H4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_LINUX", + "name": "IDF_TARGET_LINUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_FIRMWARE_CHIP_ID", + "name": "IDF_FIRMWARE_CHIP_ID", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "APP_BUILD_TYPE_APP_2NDBOOT", + "name": "APP_BUILD_TYPE_APP_2NDBOOT", + "range": null, + "title": "Default (binary application + 2nd stage bootloader)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APP_BUILD_TYPE_RAM", + "name": "APP_BUILD_TYPE_RAM", + "range": null, + "title": "Build app runs entirely in RAM (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the way the application is built.\n\nBy default, the application is built as a binary file in a format compatible with\nthe ESP-IDF bootloader. In addition to this application, 2nd stage bootloader is\nalso built. Application and bootloader binaries can be written into flash and\nloaded/executed from there.\n\nAnother option, useful for only very small and limited applications, is to only link\nthe .elf file of the application, such that it can be loaded directly into RAM over\nJTAG or UART. Note that since IRAM and DRAM sizes are very limited, it is not possible\nto build any complex application this way. However for some kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\n\nNote: when APP_BUILD_TYPE_RAM is selected and loaded with JTAG, ESP-IDF does not contain\nall the startup code required to initialize the CPUs and ROM memory (data/bss).\nTherefore it is necessary to execute a bit of ROM code prior to executing the application.\nA gdbinit file may look as follows (for ESP32):\n\n # Connect to a running instance of OpenOCD\n target remote :3333\n # Reset and halt the target\n mon reset halt\n # Run to a specific point in ROM code,\n # where most of initialization is complete.\n thb *0x40007d54\n c\n # Load the application into RAM\n load\n # Run till app_main\n tb app_main\n c\n\nExecute this gdbinit file as follows:\n\n xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\n\nExample gdbinit files for other targets can be found in tools/test_apps/system/gdb_loadable_elf/\n\nWhen loading the BIN with UART, the ROM will jump to ram and run the app after finishing the ROM\nstartup code, so there's no additional startup initialization required. You can use the\n`load_ram` in esptool.py to load the generated .bin file into ram and execute.\n\nExample:\n esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\n CONFIG_ESP_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", + "id": "build-type-application-build-type", + "name": "APP_BUILD_TYPE", + "title": "Application build type", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_GENERATE_BINARIES", + "name": "APP_BUILD_GENERATE_BINARIES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_BOOTLOADER", + "name": "APP_BUILD_BOOTLOADER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "APP_BUILD_TYPE_RAM", + "help": "If this option is enabled, external memory and related peripherals, such as Cache, MMU,\nFlash and PSRAM, won't be initialized. Corresponding drivers won't be introduced either.\nComponents that depend on the spi_flash component will also be unavailable, such as\napp_update, etc. When this option is enabled, about 26KB of RAM space can be saved.", + "id": "APP_BUILD_TYPE_PURE_RAM_APP", + "name": "APP_BUILD_TYPE_PURE_RAM_APP", + "range": null, + "title": "Build app without SPI_FLASH/PSRAM support (saves ram)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_USE_FLASH_SECTIONS", + "name": "APP_BUILD_USE_FLASH_SECTIONS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, all date, time, and path information would be eliminated. A .gdbinit file would be create\nautomatically. (or will be append if you have one already)", + "id": "APP_REPRODUCIBLE_BUILD", + "name": "APP_REPRODUCIBLE_BUILD", + "range": null, + "title": "Enable reproducible build", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, this disables the linking of binary libraries in the application build. Note\nthat after enabling this Wi-Fi/Bluetooth will not work.", + "id": "APP_NO_BLOBS", + "name": "APP_NO_BLOBS", + "range": null, + "title": "No Binary Blobs", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Bootloaders before ESP-IDF v2.1 did less initialisation of the\nsystem clock. This setting needs to be enabled to build an app\nwhich can be booted by these older bootloaders.\n\nIf this setting is enabled, the app can be booted by any bootloader\nfrom IDF v1.0 up to the current version.\n\nIf this setting is disabled, the app can only be booted by bootloaders\nfrom IDF v2.1 or newer.\n\nEnabling this setting adds approximately 1KB to the app's IRAM usage.", + "id": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "name": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloaders before ESP-IDF v2.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Partition tables before ESP-IDF V3.1 do not contain an MD5 checksum\nfield, and the bootloader before ESP-IDF v3.1 cannot read a partition\ntable that contains an MD5 checksum field.\n\nEnable this option only if your app needs to boot on a bootloader and/or\npartition table that was generated from a version *before* ESP-IDF v3.1.\n\nIf this option and Flash Encryption are enabled at the same time, and any\ndata partitions in the partition table are marked Encrypted, then the\npartition encrypted flag should be manually verified in the app before accessing\nthe partition (see CVE-2021-27926).", + "id": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", + "name": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloader and partition table before ESP-IDF v3.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": null, + "id": "APP_INIT_CLK", + "name": "APP_INIT_CLK", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "build-type", + "title": "Build type", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_REPRODUCIBLE_BUILD", + "help": "If set, then the bootloader will be built with the current time/date stamp.\nIt is stored in the bootloader description\nstructure. If not set, time/date stamp will be excluded from bootloader image.\nThis can be useful for getting the\nsame binary image files made from the same source, but at different times.", + "id": "BOOTLOADER_COMPILE_TIME_DATE", + "name": "BOOTLOADER_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Project version. It is placed in \"version\" field of the esp_bootloader_desc structure.\nThe type of this field is \"uint32_t\".", + "id": "BOOTLOADER_PROJECT_VER", + "name": "BOOTLOADER_PROJECT_VER", + "range": [ + 0, + 4294967295 + ], + "title": "Project version", + "type": "int" + } + ], + "depends_on": null, + "id": "bootloader-config-bootloader-manager", + "title": "Bootloader manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", + "id": "BOOTLOADER_APP_SECURE_VERSION", + "name": "BOOTLOADER_APP_SECURE_VERSION", + "range": null, + "title": "eFuse secure version of app", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", + "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "range": null, + "title": "Size of the efuse secure version field", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", + "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "range": null, + "title": "Emulate operations with efuse secure version(only test)", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "help": "This option prevents rollback to previous firmware/application image with lower security version.", + "id": "BOOTLOADER_APP_ANTI_ROLLBACK", + "name": "BOOTLOADER_APP_ANTI_ROLLBACK", + "range": null, + "title": "Enable app anti-rollback support", + "type": "bool" + } + ], + "depends_on": null, + "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", + "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "range": null, + "title": "Enable app rollback support", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-application-rollback", + "title": "Application Rollback", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_RECOVERY_ENABLE", + "help": "Flash address where the recovery bootloader is stored.\nThis value must be written to the eFuse field (ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR)\nto activate the recovery bootloader in the ROM bootloader. The eFuse can be programmed\nusing espefuse.py or in the user application with the API esp_efuse_set_recovery_bootloader_offset().\nSetting this value in the config allows parttool.py to verify that it does not overlap with existing\npartitions in the partition table.\n\nThe address must be a multiple of the flash sector size (0x1000 bytes).\nThe eFuse field stores the offset in sectors.\nIf the feature is no longer needed or unused, you can burn the 0xFFF value to disable this feature in\nthe ROM bootloader.", + "id": "BOOTLOADER_RECOVERY_OFFSET", + "name": "BOOTLOADER_RECOVERY_OFFSET", + "range": null, + "title": "Recovery Bootloader Flash Offset", + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "help": "The secure version is the sequence number stored in the header of each bootloader.\n\nThe ROM Bootloader which runs the 2nd stage bootloader (PRIMARY or RECOVERY) checks that\nthe security version is greater or equal that recorded in the eFuse field.\nBootloaders that have a secure version in the image < secure version in efuse will not boot.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.", + "id": "BOOTLOADER_SECURE_VERSION", + "name": "BOOTLOADER_SECURE_VERSION", + "range": null, + "title": "Secure version of bootloader", + "type": "int" + } + ], + "depends_on": "BOOTLOADER_RECOVERY_ENABLE", + "help": "This option prevents rollback to previous bootloader image with lower security version.", + "id": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "name": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "range": null, + "title": "Enable bootloader rollback support", + "type": "bool" + } + ], + "depends_on": "SOC_RECOVERY_BOOTLOADER_SUPPORTED", + "help": "The recovery bootloader feature is implemented in the ROM bootloader. It is required for safe OTA\nupdates of the bootloader. The feature is activated when the eFuse field\n(ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR) is set, which defines the flash address of the\nrecovery bootloader. If activated and the primary bootloader fails to load, the ROM bootloader\nwill attempt to load the recovery bootloader from the address specified in eFuse.", + "id": "BOOTLOADER_RECOVERY_ENABLE", + "name": "BOOTLOADER_RECOVERY_ENABLE", + "range": null, + "title": "Enable Recovery Bootloader", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-recovery-bootloader-and-rollback", + "title": "Recovery Bootloader and Rollback", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Offset address that 2nd bootloader will be flashed to.\nThe value is determined by the ROM bootloader.\nIt's not configurable in ESP-IDF.", + "id": "BOOTLOADER_OFFSET_IN_FLASH", + "name": "BOOTLOADER_OFFSET_IN_FLASH", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", + "id": "bootloader-config-bootloader-optimization-level", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION", + "title": "Bootloader optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_VERSION_1", + "name": "BOOTLOADER_LOG_VERSION_1", + "range": null, + "title": "V1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_VERSION_2", + "name": "BOOTLOADER_LOG_VERSION_2", + "range": null, + "title": "V2", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the log version to be used by the ESP log component.\nThe app log version (CONFIG_LOG_VERSION) controls the version used in the bootloader,\npreventing the selection of different versions.\nFor description of V1 and V2 see CONFIG_LOG_VERSION.", + "id": "bootloader-config-log-log-version", + "name": "BOOTLOADER_LOG_VERSION", + "title": "Log version", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration sets the log version number based on the chosen log version.", + "id": "BOOTLOADER_LOG_VERSION", + "name": "BOOTLOADER_LOG_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_NONE", + "name": "BOOTLOADER_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_ERROR", + "name": "BOOTLOADER_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_WARN", + "name": "BOOTLOADER_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_INFO", + "name": "BOOTLOADER_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_DEBUG", + "name": "BOOTLOADER_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in bootloader logs.", + "id": "bootloader-config-log-bootloader-log-verbosity", + "name": "BOOTLOADER_LOG_LEVEL", + "title": "Bootloader log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_LEVEL", + "name": "BOOTLOADER_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "BOOTLOADER_LOG_COLORS", + "name": "BOOTLOADER_LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2", + "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", + "id": "BOOTLOADER_LOG_COLORS_SUPPORT", + "name": "BOOTLOADER_LOG_COLORS_SUPPORT", + "range": null, + "title": "Allow enabling color output at run time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", + "id": "bootloader-config-log-format-timestamp", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2", + "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", + "id": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", + "name": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", + "range": null, + "title": "Allow enabling timestamp output at run time", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-log-format", + "title": "Format", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_MODE_TEXT_EN", + "name": "BOOTLOADER_LOG_MODE_TEXT_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_MODE_BINARY_EN", + "name": "BOOTLOADER_LOG_MODE_BINARY_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", + "id": "BOOTLOADER_LOG_MODE_TEXT", + "name": "BOOTLOADER_LOG_MODE_TEXT", + "range": null, + "title": "Text Log Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", + "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", + "id": "BOOTLOADER_LOG_MODE_BINARY", + "name": "BOOTLOADER_LOG_MODE_BINARY", + "range": null, + "title": "Binary Log Mode", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "bootloader-config-log-settings-log-mode", + "name": "BOOTLOADER_LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "bootloader-config-log-settings", + "title": "Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "bootloader-config-log", + "title": "Log", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "help": "This setting is only used if the SPI flash pins have been overridden by setting the eFuses\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. The same pin is also used\nfor external SPIRAM if it is enabled.\n\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\nY and specify the GPIO number connected to the WP.", + "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "range": null, + "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "help": "The option \"Use custom SPI Flash WP Pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\nvalue to the GPIO number of the SPI flash WP pin.", + "id": "BOOTLOADER_SPI_WP_PIN", + "name": "BOOTLOADER_SPI_WP_PIN", + "range": null, + "title": "Custom SPI Flash WP Pin", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", + "id": "BOOTLOADER_FLASH_DC_AWARE", + "name": "BOOTLOADER_FLASH_DC_AWARE", + "range": null, + "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\nXMC chips will be forbidden to be used, when this option is disabled.\n\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\n\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", + "id": "BOOTLOADER_FLASH_XMC_SUPPORT", + "name": "BOOTLOADER_FLASH_XMC_SUPPORT", + "range": null, + "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_32BIT_ADDR", + "name": "BOOTLOADER_FLASH_32BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address quad flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", + "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", + "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-serial-flash-configurations", + "title": "Serial Flash Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "range": null, + "title": "1.8V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "range": null, + "title": "1.9V", + "type": "bool" + } + ], + "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", + "id": "bootloader-config-vddsdio-ldo-voltage", + "name": "BOOTLOADER_VDDSDIO_BOOST", + "title": "VDDSDIO LDO voltage", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "range": null, + "title": "Number of the GPIO input for factory reset", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "range": null, + "title": "Reset on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "range": null, + "title": "Reset on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Pin level for factory reset, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", + "title": "Factory reset GPIO level", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", + "id": "BOOTLOADER_OTA_DATA_ERASE", + "name": "BOOTLOADER_OTA_DATA_ERASE", + "range": null, + "title": "Clear OTA data on factory reset (select factory partition)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", + "id": "BOOTLOADER_DATA_FACTORY_RESET", + "name": "BOOTLOADER_DATA_FACTORY_RESET", + "range": null, + "title": "Comma-separated names of partitions to clear on factory reset", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input held at the configured level while\ndevice starts up. See settings below.", + "id": "BOOTLOADER_FACTORY_RESET", + "name": "BOOTLOADER_FACTORY_RESET", + "range": null, + "title": "GPIO triggers factory reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_APP_TEST", + "name": "BOOTLOADER_NUM_PIN_APP_TEST", + "range": null, + "title": "Number of the GPIO input to boot TEST partition", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_LOW", + "name": "BOOTLOADER_APP_TEST_PIN_LOW", + "range": null, + "title": "Enter test app on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_HIGH", + "name": "BOOTLOADER_APP_TEST_PIN_HIGH", + "range": null, + "title": "Enter test app on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "Pin level for app test, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level", + "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", + "title": "App test GPIO level", + "type": "choice" + } + ], + "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", + "id": "BOOTLOADER_APP_TEST", + "name": "BOOTLOADER_APP_TEST", + "range": null, + "title": "GPIO triggers boot from test app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", + "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", + "id": "BOOTLOADER_HOLD_TIME_GPIO", + "name": "BOOTLOADER_HOLD_TIME_GPIO", + "range": null, + "title": "Hold time of GPIO for reset/test mode (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Protects the unmapped memory regions of the entire address space from unintended accesses.\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\noperation on unmapped regions of the address space.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", + "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "range": null, + "title": "Enable protection for unmapped memory regions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\nthe app's own code.\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\nthe app_main() function.\n\nUse function wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", + "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "range": null, + "title": "Allows RTC watchdog disable in user code", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", + "id": "BOOTLOADER_WDT_TIME_MS", + "name": "BOOTLOADER_WDT_TIME_MS", + "range": [ + 0, + 120000 + ], + "title": "Timeout for RTC watchdog (ms)", + "type": "int" + } + ], + "depends_on": null, + "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", + "id": "BOOTLOADER_WDT_ENABLE", + "name": "BOOTLOADER_WDT_ENABLE", + "range": null, + "title": "Use RTC watchdog in start code", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", + "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.\n\nIt is possible to enable this option with Secure Boot if \"allow insecure\noptions\" is enabled, however it's strongly recommended to NOT enable it as\nit may allow a Secure Boot bypass.", + "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "range": null, + "title": "Skip image validation when exiting deep sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "help": "Some applications need to boot very quickly from power on. By default, the entire app binary\nis read from flash and verified which takes up a significant portion of the boot time.\n\nEnabling this option will skip validation of the app when the SoC boots from power on.\nNote that in this case it's not possible for the bootloader to detect if an app image is\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\nfirmware bug or physical damage.\n\nFollowing other reset types, the bootloader will still validate the app image. This increases\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.", + "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "range": null, + "title": "Skip image validation from power on reset (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "help": "Selecting this option prevents the bootloader from ever validating the app image before\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\nunbootable.\n\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\nConsider selecting \"Skip image validation from power on reset\" instead. However, if boot time\nis the only important factor then it can be enabled.", + "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "range": null, + "title": "Skip image validation always (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", + "id": "BOOTLOADER_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_RESERVE_RTC_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "range": null, + "title": "Include custom memory in the CRC calculation", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "range": null, + "title": "Size in bytes for custom purposes", + "type": "hex" + } + ], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "range": null, + "title": "Reserve RTC FAST memory for custom purposes", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": "This option reserves an area in RTC FAST memory for the following features:\n- \"Skip image validation when exiting deep sleep\"\n- \"Reserve RTC FAST memory for custom purposes\"\n- \"GPIO triggers factory reset\"", + "id": "BOOTLOADER_RESERVE_RTC_MEM", + "name": "BOOTLOADER_RESERVE_RTC_MEM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config", + "title": "Bootloader config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_BOOT", + "name": "SECURE_SIGNED_ON_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_UPDATE", + "name": "SECURE_SIGNED_ON_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", + "help": null, + "id": "SECURE_SIGNED_APPS", + "name": "SECURE_SIGNED_APPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", + "help": null, + "id": "SECURE_BOOT_V2_RSA_SUPPORTED", + "name": "SECURE_BOOT_V2_RSA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V2_ECC", + "help": null, + "id": "SECURE_BOOT_V2_ECC_SUPPORTED", + "name": "SECURE_BOOT_V2_ECC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V1", + "help": null, + "id": "SECURE_BOOT_V1_SUPPORTED", + "name": "SECURE_BOOT_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_REV_MIN_FULL >= 300", + "help": null, + "id": "SECURE_BOOT_V2_PREFERRED", + "name": "SECURE_BOOT_V2_PREFERRED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_ECDSA_ENABLED", + "name": "SECURE_BOOT_V2_ECDSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_RSA_ENABLED", + "name": "SECURE_BOOT_V2_RSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_BOOT", + "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", + "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "range": null, + "title": "Require signed app images", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", + "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "range": null, + "title": "ECDSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && !(IDF_TARGET_ESP32C5 && ESP32C5_REV_MIN_FULL < 1) && ", + "help": "Appends the RSA-3072 based Signature block to the application.\nRefer to before enabling.", + "id": "SECURE_SIGNED_APPS_RSA_SCHEME", + "name": "SECURE_SIGNED_APPS_RSA_SCHEME", + "range": null, + "title": "RSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", + "help": "For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\nRefer to documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "range": null, + "title": "ECDSA (V2)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "help": "Select the Secure App signing scheme. Depends on the Chip Revision.\nThere are two secure boot versions:\n\n1. Secure boot V1\n - Legacy custom secure boot scheme. Supported in ESP32 SoC.\n\n2. Secure boot V2\n - RSA based secure boot scheme.\n Supported in ESP32-ECO3 (ESP32 Chip Revision 3 onwards), ESP32-S2, ESP32-C3, ESP32-S3 SoCs.\n\n - ECDSA based secure boot scheme. Supported in ESP32-C2 SoC.", + "id": "security-features-app-signing-scheme", + "name": "SECURE_SIGNED_APPS_SCHEME", + "title": "App Signing Scheme", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", + "range": null, + "title": "Using ECC curve NISTP192", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", + "range": null, + "title": "Using ECC curve NISTP256 (Recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && SOC_ECDSA_SUPPORT_CURVE_P384 && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", + "range": null, + "title": "Using ECC curve NISTP384 (Recommended)", + "type": "bool" + } + ], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "help": "Select the ECDSA key size. Three key sizes are supported depending upon on the target:\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n- 384 bit key using NISTP384 curve (Recommended)\n\nThe advantage of using 384 and 256 bit keys is the extra randomness which makes it difficult to be\nbruteforced compared to 192 bit key.\nAt present, both key sizes are practically implausible to bruteforce.", + "id": "security-features-ecdsa-key-size", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_SIZE", + "title": "ECDSA key size", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME", + "help": "If this option is set, the bootloader will be compiled with code to verify that an app is signed before\nbooting it.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\nusers will want to leave it disabled.", + "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "range": null, + "title": "Bootloader verifies app signatures", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "help": "If this option is set, any OTA updated apps will have the signature verified before being considered valid.\n\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\nupdates, or esp_image_format.h APIs are used to verify apps.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\nattackers by preventing spoofing of OTA updates.", + "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "range": null, + "title": "Verify app signature on update", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && ", + "help": "Build a bootloader which enables secure boot version 1 on first boot.\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_V1_ENABLED", + "name": "SECURE_BOOT_V1_ENABLED", + "range": null, + "title": "Enable Secure Boot version 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && ", + "help": "Build a bootloader which enables Secure Boot version 2 on first boot.\nRefer to Secure Boot V2 section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_V2_ENABLED", + "name": "SECURE_BOOT_V2_ENABLED", + "range": null, + "title": "Enable Secure Boot version 2", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT", + "help": "Select the Secure Boot Version. Depends on the Chip Revision.\nSecure Boot V2 is the new RSA / ECDSA based secure boot scheme.\n\n - RSA based scheme is supported in ESP32 (Revision 3 onwards), ESP32-S2, ESP32-C3 (ECO3), ESP32-S3.\n - ECDSA based scheme is supported in ESP32-C2 SoC.\n\nPlease note that, RSA or ECDSA secure boot is property of specific SoC based on its HW design, supported\ncrypto accelerators, die-size, cost and similar parameters. Please note that RSA scheme has requirement\nfor bigger key sizes but at the same time it is comparatively faster than ECDSA verification.\n\nSecure Boot V1 is the AES based (custom) secure boot scheme supported in ESP32 SoC.", + "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version", + "name": "SECURE_BOOT_VERSION", + "title": "Select secure boot version", + "type": "choice" + } + ], + "depends_on": "SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)", + "help": "Build a bootloader which enables Secure Boot on first boot.\n\nOnce enabled, Secure Boot will not boot a modified bootloader. The bootloader will only load a partition\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\nupdated apps once secure boot is enabled.\n\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.", + "id": "SECURE_BOOT", + "name": "SECURE_BOOT", + "range": null, + "title": "Enable hardware Secure Boot in bootloader (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "On first boot, the bootloader will generate a key which is not readable externally or by software. A\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\nboot.\n\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.", + "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "range": null, + "title": "One-time flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\n\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\nkey.\n\nThis option is less secure than one-time flash, because a leak of the digest key from one device\nallows reflashing of any device that uses it.", + "id": "SECURE_BOOTLOADER_REFLASHABLE", + "name": "SECURE_BOOTLOADER_REFLASHABLE", + "range": null, + "title": "Reflashable", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT_V1_ENABLED", + "help": null, + "id": "security-features-secure-bootloader-mode", + "name": "SECURE_BOOTLOADER_MODE", + "title": "Secure bootloader mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "help": "Path to the key file used to sign app images.\n\nKey file is an ECDSA private key (NIST256p curve) in PEM format for Secure Boot V1.\nKey file is an RSA private key in PEM format for Secure Boot V2.\n\nPath is evaluated relative to the project directory.\n\nYou can generate a new signing key by running the following command:\nespsecure.py generate_signing_key secure_boot_signing_key.pem\n\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.", + "id": "SECURE_BOOT_SIGNING_KEY", + "name": "SECURE_BOOT_SIGNING_KEY", + "range": null, + "title": "Secure boot private signing key", + "type": "string" + } + ], + "depends_on": "SECURE_SIGNED_APPS", + "help": "Once secure boot or signed app requirement is enabled, app images are required to be signed.\n\nIf enabled (default), these binary files are signed as part of the build process. The file named in\n\"Secure boot private signing key\" will be used to sign the image.\n\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py.\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\n(for example, on a remote signing server.)", + "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "range": null, + "title": "Sign binaries during build", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES", + "help": "Path to a public key file used to verify signed images.\nSecure Boot V1: This ECDSA public key is compiled into the bootloader and/or\napp, to verify app images.\n\nKey file is in raw binary format, and can be extracted from a\nPEM formatted private key using the espsecure.py\nextract_public_key command.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_VERIFICATION_KEY", + "name": "SECURE_BOOT_VERIFICATION_KEY", + "range": null, + "title": "Secure boot public signature verification key", + "type": "string" + }, + { + "children": [], + "depends_on": "SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "help": "If this option is set, ROM bootloader will revoke the public key digest burned in efuse block\nif it fails to verify the signature of software bootloader with it.\nRevocation of keys does not happen when enabling secure boot. Once secure boot is enabled,\nkey revocation checks will be done on subsequent boot-up, while verifying the software bootloader\n\nThis feature provides a strong resistance against physical attacks on the device.\n\nNOTE: Once a digest slot is revoked, it can never be used again to verify an image\nThis can lead to permanent bricking of the device, in case all keys are revoked\nbecause of signature verification failure.", + "id": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", + "name": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", + "range": null, + "title": "Enable Aggressive key revoke strategy", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED", + "help": "If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\n\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Do not disable the ability to further read protect eFuses", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED", + "help": "When Secure Boot V2 is enabled, by default the bootloader is not flashed along with other artifacts\nlike the application and the partition table images, i.e. bootloader has to be separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", + "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "range": null, + "title": "Flash bootloader along with other artifacts when using the default flash command", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "range": null, + "title": "No encoding (256 bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "range": null, + "title": "3/4 encoding (192 bit key)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", + "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", + "id": "security-features-hardware-key-encoding", + "name": "SECURE_BOOTLOADER_KEY_ENCODING", + "title": "Hardware Key Encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_BOOT", + "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_INSECURE", + "name": "SECURE_BOOT_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "range": null, + "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128", + "name": "SECURE_FLASH_ENCRYPTION_AES128", + "range": null, + "title": "AES-128 (256-bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES256", + "name": "SECURE_FLASH_ENCRYPTION_AES256", + "range": null, + "title": "AES-256 (512-bit key)", + "type": "bool" + } + ], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", + "help": "Size of generated XTS-AES key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated XTS-AES key", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "range": null, + "title": "Development (NOT SECURE)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "range": null, + "title": "Release", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "By default Development mode is enabled which allows ROM download mode to perform flash encryption\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\nto flash.\n\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\npossible for the device in ROM Download Mode to use the flash encryption hardware.\n\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\nFor CI tests we use IDF_CI_BUILD to bypass it (\"export IDF_CI_BUILD=1\").\nWe do not recommend bypassing it for other purposes.\n\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", + "name": "SECURE_FLASH_ENCRYPTION_MODE", + "title": "Enable usage mode", + "type": "choice" + } + ], + "depends_on": null, + "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", + "id": "SECURE_FLASH_ENC_ENABLED", + "name": "SECURE_FLASH_ENC_ENABLED", + "range": null, + "title": "Enable flash encryption on boot (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", + "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_ROM_BASIC", + "name": "SECURE_BOOT_ALLOW_ROM_BASIC", + "range": null, + "title": "Leave ROM BASIC Interpreter available on reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_JTAG", + "name": "SECURE_BOOT_ALLOW_JTAG", + "range": null, + "title": "Allow JTAG Debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", + "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "range": null, + "title": "Allow app partition length not 64KB aligned", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "help": "If not set (default), during startup in the app all unused digest slots will be revoked.\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\nIf set, it means that you have a plan to use unused digests slots later.\n\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", + "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "range": null, + "title": "Leave unused digest slots available (not revoke)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "range": null, + "title": "Leave UART bootloader encryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", + "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "range": null, + "title": "Leave UART bootloader decryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", + "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "range": null, + "title": "Leave UART bootloader flash cache enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", + "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "range": null, + "title": "Require flash encryption to be already enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "help": "If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\nDue to other eFuses are linked with the same write protection bit (see the list below) then\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\nto give a chance to turn on the chip into the release mode later.\n\nList of eFuses with the same write protection bit:\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\n\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-H2 & ESP32H21: DIS_ICACHE, DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD,\nSPI_DOWNLOAD_MSPI_DIS, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT,\nDIS_USB_SERIAL_JTAG\n\nESP32-S2: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB, DIS_TWAI, DIS_BOOT_REMAP, SOFT_DIS_JTAG,\nHARD_DIS_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-S3: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB_OTG, DIS_TWAI, DIS_APP_CPU, DIS_PAD_JTAG,\nDIS_DOWNLOAD_MANUAL_ENCRYPT, DIS_USB_JTAG, DIS_USB_SERIAL_JTAG, STRAP_JTAG_SEL, USB_PHY_SEL.", + "id": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", + "range": null, + "title": "Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)", + "type": "bool" + } + ], + "depends_on": null, + "id": "security-features-potentially-insecure-options", + "title": "Potentially insecure options", + "type": "menu" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED && !SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "help": "If set (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", + "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "range": null, + "title": "Encrypt only the app image that is present in the partition of type app", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "If set (default), in an app during startup code,\nthere is a check of the flash encryption eFuse bit is on\n(as the bootloader should already have set it).\nThe app requires this bit is on to continue work otherwise abort.\n\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.", + "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "range": null, + "title": "Check Flash Encryption enabled on app startup", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "range": null, + "title": "Low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "range": null, + "title": "Medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "range": null, + "title": "High", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "help": "The strength of the pseudo rounds functions can be configured to low, medium and high,\neach denoting the values that would be stored in the efuses field.\nBy default the value to set to low.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nflash encryption/decryption operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide documentation.", + "id": "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "title": "Strength of the pseudo rounds function", + "type": "choice" + } + ], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", + "help": "If set (default), the bootloader will permanently enable the XTS-AES peripheral's pseudo rounds function.\nNote: Enabling this config would burn an efuse.", + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "range": null, + "title": "Permanently enable XTS-AES's pseudo rounds function", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_ROM_DL_MODE_ENABLED", + "name": "SECURE_ROM_DL_MODE_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "If set, during startup the app will burn an eFuse bit to permanently disable the UART ROM\nDownload Mode. This prevents any future use of esptool.py, espefuse.py and similar tools.\n\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\nthen an error is printed instead.\n\nIt is recommended to enable this option in any production application where Flash\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\n\nIt is also possible to permanently disable Download Mode by calling\nesp_efuse_disable_rom_download_mode() at runtime.", + "id": "SECURE_DISABLE_ROM_DL_MODE", + "name": "SECURE_DISABLE_ROM_DL_MODE", + "range": null, + "title": "UART ROM download mode (Permanently disabled (recommended))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SUPPORTS_SECURE_DL_MODE && ", + "help": "If set, during startup the app will burn an eFuse bit to permanently switch the UART ROM\nDownload Mode into a separate Secure Download mode. This option can only work if\nDownload Mode is not already disabled by eFuse.\n\nSecure Download mode limits the use of Download Mode functions to update SPI config,\nchanging baud rate, basic flash write and a command to return a summary of currently\nenabled security features (`get_security_info`).\n\nSecure Download mode is not compatible with the esptool.py flasher stub feature,\nespefuse.py, read/writing memory or registers, encrypted download, or any other\nfeatures that interact with unsupported Download Mode commands.\n\nSecure Download mode should be enabled in any application where Flash Encryption\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\nthe benefits of the security features, but it increases the potential \"attack\nsurface\" for an attacker to try and bypass them with a successful physical attack.\n\nIt is also possible to enable secure download mode at runtime by calling\nesp_efuse_enable_rom_secure_download_mode()\n\nNote: Secure Download mode is not available for ESP32.", + "id": "SECURE_ENABLE_SECURE_ROM_DL_MODE", + "name": "SECURE_ENABLE_SECURE_ROM_DL_MODE", + "range": null, + "title": "UART ROM download mode (Permanently switch to Secure mode (recommended))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a potentially insecure option.\nEnabling this option will allow the full UART download mode to stay enabled.\nThis option SHOULD NOT BE ENABLED for production use cases.", + "id": "SECURE_INSECURE_ALLOW_DL_MODE", + "name": "SECURE_INSECURE_ALLOW_DL_MODE", + "range": null, + "title": "UART ROM download mode (Enabled (not recommended))", + "type": "bool" + } + ], + "depends_on": "(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)", + "help": null, + "id": "security-features-uart-rom-download-mode", + "name": "SECURE_UART_ROM_DL_MODE", + "title": "UART ROM download mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "security-features", + "title": "Security features", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_REPRODUCIBLE_BUILD", + "help": "If set, then the app will be built with the current time/date stamp. It is stored in the app description\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\nsame binary image files made from the same source, but at different times.", + "id": "APP_COMPILE_TIME_DATE", + "name": "APP_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for app", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The PROJECT_VER variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", + "id": "APP_EXCLUDE_PROJECT_VER_VAR", + "name": "APP_EXCLUDE_PROJECT_VER_VAR", + "range": null, + "title": "Exclude PROJECT_VER from firmware image", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The PROJECT_NAME variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", + "id": "APP_EXCLUDE_PROJECT_NAME_VAR", + "name": "APP_EXCLUDE_PROJECT_NAME_VAR", + "range": null, + "title": "Exclude PROJECT_NAME from firmware image", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "APP_PROJECT_VER_FROM_CONFIG", + "help": "Project version", + "id": "APP_PROJECT_VER", + "name": "APP_PROJECT_VER", + "range": null, + "title": "Project version", + "type": "string" + } + ], + "depends_on": null, + "help": "If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\nOther ways to set PROJECT_VER will be ignored.", + "id": "APP_PROJECT_VER_FROM_CONFIG", + "name": "APP_PROJECT_VER_FROM_CONFIG", + "range": null, + "title": "Get the project version from Kconfig", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "At startup, the app will read the embedded APP ELF SHA-256 hash value from flash\nand convert it into a string and store it in a RAM buffer.\nThis ensures the panic handler and core dump will be able to print this string\neven when cache is disabled.\nThe size of the buffer is APP_RETRIEVE_LEN_ELF_SHA plus the null terminator.\nChanging this value will change the size of this buffer, in bytes.", + "id": "APP_RETRIEVE_LEN_ELF_SHA", + "name": "APP_RETRIEVE_LEN_ELF_SHA", + "range": [ + 8, + 64 + ], + "title": "The length of APP ELF SHA is stored in RAM(chars)", + "type": "int" + } + ], + "depends_on": null, + "id": "application-manager", + "title": "Application manager", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CRC_LE", + "name": "ESP_ROM_HAS_CRC_LE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CRC_BE", + "name": "ESP_ROM_HAS_CRC_BE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_MZ_CRC32", + "name": "ESP_ROM_HAS_MZ_CRC32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_JPEG_DECODE", + "name": "ESP_ROM_HAS_JPEG_DECODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_UART_CLK_IS_XTAL", + "name": "ESP_ROM_UART_CLK_IS_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_OTG_NUM", + "name": "ESP_ROM_USB_OTG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ERASE_0_REGION_BUG", + "name": "ESP_ROM_HAS_ERASE_0_REGION_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", + "name": "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_GET_CLK_FREQ", + "name": "ESP_ROM_GET_CLK_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_HAL_WDT", + "name": "ESP_ROM_HAS_HAL_WDT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", + "name": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_LAYOUT_TABLE", + "name": "ESP_ROM_HAS_LAYOUT_TABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH", + "name": "ESP_ROM_HAS_SPI_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SPI_FLASH_MMAP", + "name": "ESP_ROM_HAS_SPI_FLASH_MMAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_ETS_PRINTF_BUG", + "name": "ESP_ROM_HAS_ETS_PRINTF_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB", + "name": "ESP_ROM_HAS_NEWLIB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", + "name": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", + "name": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG", + "name": "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG", + "name": "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CACHE_WRITEBACK_BUG", + "name": "ESP_ROM_HAS_CACHE_WRITEBACK_BUG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SW_FLOAT", + "name": "ESP_ROM_HAS_SW_FLOAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_VERSION", + "name": "ESP_ROM_HAS_VERSION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "name": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_CONSOLE_OUTPUT_SECONDARY", + "name": "ESP_ROM_CONSOLE_OUTPUT_SECONDARY", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Always print ROM logs, this is the default behavior.", + "id": "BOOT_ROM_LOG_ALWAYS_ON", + "name": "BOOT_ROM_LOG_ALWAYS_ON", + "range": null, + "title": "Always Log", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Don't print ROM logs.", + "id": "BOOT_ROM_LOG_ALWAYS_OFF", + "name": "BOOT_ROM_LOG_ALWAYS_OFF", + "range": null, + "title": "Permanently disable logging", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Print ROM logs when GPIO level is high during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", + "id": "BOOT_ROM_LOG_ON_GPIO_HIGH", + "name": "BOOT_ROM_LOG_ON_GPIO_HIGH", + "range": null, + "title": "Log on GPIO High", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Print ROM logs when GPIO level is low during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", + "id": "BOOT_ROM_LOG_ON_GPIO_LOW", + "name": "BOOT_ROM_LOG_ON_GPIO_LOW", + "range": null, + "title": "Log on GPIO Low", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_ESP32", + "help": "Controls the Boot ROM log behavior.\nThe rom log behavior can only be changed for once,\nspecific eFuse bit(s) will be burned at app boot stage.", + "id": "boot-rom-behavior-permanently-change-boot-rom-output", + "name": "BOOT_ROM_LOG_SCHEME", + "title": "Permanently change Boot ROM output", + "type": "choice" + } + ], + "depends_on": null, + "id": "boot-rom-behavior", + "title": "Boot ROM Behavior", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The flasher tool sends a precompiled download stub first by default. That stub allows things\nlike compressed downloads and more. Usually you should not need to disable that feature", + "id": "ESPTOOLPY_NO_STUB", + "name": "ESPTOOLPY_NO_STUB", + "range": null, + "title": "Disable download stub", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_OCT_FLASH", + "name": "ESPTOOLPY_OCT_FLASH", + "range": null, + "title": "Enable Octal Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config option helps decide whether flash is Quad or Octal, but please note some limitations:\n\n1. If the flash chip is an Octal one, even if one of \"QIO\", \"QOUT\", \"DIO\", \"DOUT\" options is\n selected in `ESPTOOLPY_FLASHMODE`, our code will automatically change the\n mode to \"OPI\" and the sample mode will be STR.\n2. If the flash chip is a Quad one, even if \"OPI\" is selected in `ESPTOOLPY_FLASHMODE`, our code will\n automatically change the mode to \"DIO\".\n3. This option is mainly to improve the out-of-box experience of developers. It doesn't guarantee\n the feature-complete. Some code still rely on `ESPTOOLPY_OCT_FLASH`. Please do not rely on this option\n when you are pretty sure that you are using Octal flash.\n In this case, please enable `ESPTOOLPY_OCT_FLASH` option, then you can choose `DTR` sample mode\n in `ESPTOOLPY_FLASH_SAMPLE_MODE`. Otherwise, only `STR` mode is available.\n4. Enabling this feature reduces available internal RAM size (around 900 bytes).\n If your IRAM space is insufficient and you're aware of your flash type,\n disable this option and select corresponding flash type options.", + "id": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "name": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "range": null, + "title": "Choose flash mode automatically (please read help)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QIO", + "name": "ESPTOOLPY_FLASHMODE_QIO", + "range": null, + "title": "QIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QOUT", + "name": "ESPTOOLPY_FLASHMODE_QOUT", + "range": null, + "title": "QOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DIO", + "name": "ESPTOOLPY_FLASHMODE_DIO", + "range": null, + "title": "DIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DOUT", + "name": "ESPTOOLPY_FLASHMODE_DOUT", + "range": null, + "title": "DOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_OPI", + "name": "ESPTOOLPY_FLASHMODE_OPI", + "range": null, + "title": "OPI", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", + "id": "serial-flasher-config-flash-spi-mode", + "name": "ESPTOOLPY_FLASHMODE", + "title": "Flash SPI mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "range": null, + "title": "STR Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", + "range": null, + "title": "DTR Mode", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-sampling-mode", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", + "title": "Flash Sampling Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHMODE", + "name": "ESPTOOLPY_FLASHMODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SPI_FLASH_HPM_ON || ESPTOOLPY_OCT_FLASH) && (ESPTOOLPY_FLASH_SAMPLE_MODE_STR || IDF_EXPERIMENTAL_FEATURES) && ", + "help": "- Optional feature for QSPI Flash. Read docs and enable `CONFIG_SPI_FLASH_HPM_ENA` first!\n- Flash 120 MHz SDR mode is stable.\n- Flash 120 MHz DDR mode is an experimental feature, it works when\n the temperature is stable.\n\n Risks:\n If your chip powers on at a certain temperature, then after the temperature\n increases or decreases by approximately 20 Celsius degrees (depending on the\n chip), the program will crash randomly.", + "id": "ESPTOOLPY_FLASHFREQ_120M", + "name": "ESPTOOLPY_FLASHFREQ_120M", + "range": null, + "title": "120 MHz (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-spi-speed", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ", + "name": "ESPTOOLPY_FLASHFREQ", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_1MB", + "name": "ESPTOOLPY_FLASHSIZE_1MB", + "range": null, + "title": "1 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_2MB", + "name": "ESPTOOLPY_FLASHSIZE_2MB", + "range": null, + "title": "2 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_4MB", + "name": "ESPTOOLPY_FLASHSIZE_4MB", + "range": null, + "title": "4 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_8MB", + "name": "ESPTOOLPY_FLASHSIZE_8MB", + "range": null, + "title": "8 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_16MB", + "name": "ESPTOOLPY_FLASHSIZE_16MB", + "range": null, + "title": "16 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_32MB", + "name": "ESPTOOLPY_FLASHSIZE_32MB", + "range": null, + "title": "32 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_64MB", + "name": "ESPTOOLPY_FLASHSIZE_64MB", + "range": null, + "title": "64 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_128MB", + "name": "ESPTOOLPY_FLASHSIZE_128MB", + "range": null, + "title": "128 MB", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.\n\nEnabling this option turns off the image protection against corruption\nby a SHA256 digest. Updating the bootloader image before flashing would\ninvalidate the digest.", + "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "range": null, + "title": "Detect flash size when flashing bootloader", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_RESET", + "name": "ESPTOOLPY_BEFORE_RESET", + "range": null, + "title": "Reset to bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_NORESET", + "name": "ESPTOOLPY_BEFORE_NORESET", + "range": null, + "title": "No reset", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-before-flashing", + "name": "ESPTOOLPY_BEFORE", + "title": "Before flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_BEFORE", + "name": "ESPTOOLPY_BEFORE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_RESET", + "name": "ESPTOOLPY_AFTER_RESET", + "range": null, + "title": "Reset after flashing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_NORESET", + "name": "ESPTOOLPY_AFTER_NORESET", + "range": null, + "title": "Stay in bootloader", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-after-flashing", + "name": "ESPTOOLPY_AFTER", + "title": "After flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "serial-flasher-config", + "title": "Serial flasher config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This is the default partition table, designed to fit into a 2MB or\nlarger flash with a single 1MB app partition.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", + "id": "PARTITION_TABLE_SINGLE_APP", + "name": "PARTITION_TABLE_SINGLE_APP", + "range": null, + "title": "Single factory app, no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a variation of the default partition table, that expands\nthe 1MB app partition size to 1.5MB to fit more code.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE", + "range": null, + "title": "Single factory app (large), no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with a factory app\npartition plus two OTA app partitions. All are 1MB, so this\npartition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota.csv", + "id": "PARTITION_TABLE_TWO_OTA", + "name": "PARTITION_TABLE_TWO_OTA", + "range": null, + "title": "Factory app, two OTA definitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", + "id": "PARTITION_TABLE_TWO_OTA_LARGE", + "name": "PARTITION_TABLE_TWO_OTA_LARGE", + "range": null, + "title": "Two large size OTA partitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Specify the path to the partition table CSV to use for your project.\n\nConsult the Partition Table section in the ESP-IDF Programmers Guide\nfor more information.", + "id": "PARTITION_TABLE_CUSTOM", + "name": "PARTITION_TABLE_CUSTOM", + "range": null, + "title": "Custom partition table CSV", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv", + "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "range": null, + "title": "Single factory app, no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the \"Single factory app (large), no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "range": null, + "title": "Single factory app (large), no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "help": "This is a variation of the \"Factory app, two OTA definitions\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv", + "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "range": null, + "title": "Factory app, two OTA definitions, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports the ESP-TEE framework. See the Trusted Execution Environment (TEE) section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_tee.csv", + "id": "PARTITION_TABLE_SINGLE_APP_TEE", + "name": "PARTITION_TABLE_SINGLE_APP_TEE", + "range": null, + "title": "Single factory app, no OTA, TEE", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This is a basic OTA-enabled partition table with two OTA app partitions each\nfor the TEE and the user (REE) application. The user app partition sizes are 1536K,\nso this partition table requires 4MB or larger flash size. See the\nTrusted Execution Environment (TEE) section in the ESP-IDF Programmers Guide\nfor more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_tee.csv", + "id": "PARTITION_TABLE_TWO_OTA_TEE", + "name": "PARTITION_TABLE_TWO_OTA_TEE", + "range": null, + "title": "Two OTA definitions, TEE", + "type": "bool" + } + ], + "depends_on": null, + "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. These are mostly intended\nfor example and development use, it's expect that for production use you\nwill copy one of these CSV files and create a custom partition CSV for\nyour application.", + "id": "partition-table-partition-table", + "name": "PARTITION_TABLE_TYPE", + "title": "Partition Table", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", + "id": "PARTITION_TABLE_CUSTOM_FILENAME", + "name": "PARTITION_TABLE_CUSTOM_FILENAME", + "range": null, + "title": "Custom partition CSV file", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PARTITION_TABLE_FILENAME", + "name": "PARTITION_TABLE_FILENAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", + "id": "PARTITION_TABLE_OFFSET", + "name": "PARTITION_TABLE_OFFSET", + "range": null, + "title": "Offset of partition table", + "type": "hex" + }, + { + "children": [], + "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", + "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", + "id": "PARTITION_TABLE_MD5", + "name": "PARTITION_TABLE_MD5", + "range": null, + "title": "Generate an MD5 checksum for the partition table", + "type": "bool" + } + ], + "depends_on": null, + "id": "partition-table", + "title": "Partition Table", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EXAMPLE_DAC_CONTINUOUS_BY_DMA", + "name": "EXAMPLE_DAC_CONTINUOUS_BY_DMA", + "range": null, + "title": "\u901a\u8fc7DMA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EXAMPLE_DAC_CONTINUOUS_BY_TIMER", + "name": "EXAMPLE_DAC_CONTINUOUS_BY_TIMER", + "range": null, + "title": "\u901a\u8fc7\u5b9a\u65f6\u5668", + "type": "bool" + } + ], + "depends_on": null, + "help": "DAC\u901a\u8fc7DMA\u6216\u5b9a\u65f6\u5668\u8f93\u51fa\u8fde\u7eed\u6570\u636e", + "id": "\u793a\u4f8b\u914d\u7f6e-\u9009\u62e9dac\u8fde\u7eed\u793a\u4f8b\u6a21\u5f0f", + "name": "EXAMPLE_DAC_CONTINUOUS_MODE", + "title": "\u9009\u62e9DAC\u8fde\u7eed\u793a\u4f8b\u6a21\u5f0f", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "\u6ce2\u5f62\u5c06\u6bcf\u9694\u51e0\u79d2\u5207\u6362\u4e00\u6b21\uff0c\n\u6b64\u914d\u7f6e\u7528\u4e8e\u6307\u5b9a\u5207\u6362\u5468\u671f", + "id": "EXAMPLE_WAVE_PERIOD_SEC", + "name": "EXAMPLE_WAVE_PERIOD_SEC", + "range": null, + "title": "\u5207\u6362\u6ce2\u5f62\u7684\u5468\u671f\uff08\u5355\u4f4d\uff1a\u79d2\uff09", + "type": "int" + } + ], + "depends_on": null, + "id": "\u793a\u4f8b\u914d\u7f6e", + "title": "\u793a\u4f8b\u914d\u7f6e", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEBUG", + "name": "COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_SIZE", + "name": "COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_PERF", + "name": "COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_NONE", + "name": "COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", + "id": "compiler-options-optimization-level", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable assertions. Assertion content and line number will be printed on failure.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "range": null, + "title": "Silent (saves code size)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "range": null, + "title": "Disabled (sets -DNDEBUG)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", + "id": "compiler-options-assertion-level", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "title": "Assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", + "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "range": null, + "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_RVFPLIB && ", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "range": null, + "title": "librvfp", + "type": "bool" + } + ], + "depends_on": null, + "help": "In the soft-fp part of libgcc, riscv version is written in C,\nand handles all edge cases in IEEE754, which makes it larger\nand performance is slow.\n\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\ninteger processors, for single and double-precision FP.\nRVfplib is \"fast\", but it has a few exceptions from IEEE 754 compliance.", + "id": "compiler-options-compiler-float-lib-source", + "name": "COMPILER_FLOAT_LIB_FROM", + "title": "Compiler float lib source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, the error messages will be discarded in following check macros:\n- ESP_RETURN_ON_ERROR\n- ESP_EXIT_ON_ERROR\n- ESP_RETURN_ON_FALSE\n- ESP_EXIT_ON_FALSE", + "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "range": null, + "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\nwith paths relative to the placeholder string \"IDF\", and convert paths inside the\nproject directory to relative paths.\n\nThis allows building the project with assertions or other code that embeds file paths,\nwithout the binary containing the exact path to the IDF or project directories.\n\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\n-ffile-prefix-map arguments.", + "id": "COMPILER_HIDE_PATHS_MACROS", + "is_menuconfig": true, + "name": "COMPILER_HIDE_PATHS_MACROS", + "range": null, + "title": "Replace ESP-IDF and project paths in binaries", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_CXX_EXCEPTIONS", + "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", + "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "range": null, + "title": "Emergency Pool Size", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", + "id": "COMPILER_CXX_EXCEPTIONS", + "is_menuconfig": true, + "name": "COMPILER_CXX_EXCEPTIONS", + "range": null, + "title": "Enable C++ exceptions", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", + "id": "COMPILER_CXX_RTTI", + "name": "COMPILER_CXX_RTTI", + "range": null, + "title": "Enable C++ run-time type info (RTTI)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NONE", + "name": "COMPILER_STACK_CHECK_MODE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NORM", + "name": "COMPILER_STACK_CHECK_MODE_NORM", + "range": null, + "title": "Normal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_STRONG", + "name": "COMPILER_STACK_CHECK_MODE_STRONG", + "range": null, + "title": "Strong", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_ALL", + "name": "COMPILER_STACK_CHECK_MODE_ALL", + "range": null, + "title": "Overall", + "type": "bool" + } + ], + "depends_on": null, + "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL\n\nThe performance impact includes increasing the amount of stack memory required for each task.", + "id": "compiler-options-stack-smashing-protection-mode", + "name": "COMPILER_STACK_CHECK_MODE", + "title": "Stack smashing protection mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Stack smashing protection.", + "id": "COMPILER_STACK_CHECK", + "name": "COMPILER_STACK_CHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", + "id": "COMPILER_NO_MERGE_CONSTANTS", + "name": "COMPILER_NO_MERGE_CONSTANTS", + "range": null, + "title": "Disable merging const sections", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", + "id": "COMPILER_WARN_WRITE_STRINGS", + "name": "COMPILER_WARN_WRITE_STRINGS", + "range": null, + "title": "Enable -Wwrite-strings warning flag", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Adds -msave-restore to C/C++ compilation flags.\n\nWhen this flag is enabled, compiler will call library functions to\nsave/restore registers in function prologues/epilogues. This results\nin lower overall code size, at the expense of slightly reduced performance.\n\nThis option can be enabled for RISC-V targets only.", + "id": "COMPILER_SAVE_RESTORE_LIBCALLS", + "name": "COMPILER_SAVE_RESTORE_LIBCALLS", + "range": null, + "title": "Enable -msave-restore flag to reduce code size", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", + "id": "COMPILER_DISABLE_DEFAULT_ERRORS", + "name": "COMPILER_DISABLE_DEFAULT_ERRORS", + "range": null, + "title": "Disable errors for default warnings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", + "id": "COMPILER_DISABLE_GCC12_WARNINGS", + "name": "COMPILER_DISABLE_GCC12_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 12", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", + "id": "COMPILER_DISABLE_GCC13_WARNINGS", + "name": "COMPILER_DISABLE_GCC13_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 13", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", + "id": "COMPILER_DISABLE_GCC14_WARNINGS", + "name": "COMPILER_DISABLE_GCC14_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 14", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", + "id": "COMPILER_DUMP_RTL_FILES", + "name": "COMPILER_DUMP_RTL_FILES", + "range": null, + "title": "Dump RTL files during compilation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_GCCLIB", + "name": "COMPILER_RT_LIB_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_CLANGRT", + "name": "COMPILER_RT_LIB_CLANGRT", + "range": null, + "title": "libclang_rt", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_HOST", + "name": "COMPILER_RT_LIB_HOST", + "range": null, + "title": "Host", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", + "id": "compiler-options-compiler-runtime-library", + "name": "COMPILER_RT_LIB", + "title": "Compiler runtime library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_RT_LIB_NAME", + "name": "COMPILER_RT_LIB_NAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Places orphan sections with a warning message.", + "id": "COMPILER_ORPHAN_SECTIONS_WARNING", + "name": "COMPILER_ORPHAN_SECTIONS_WARNING", + "range": null, + "title": "Place with warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places orphan sections without a warning/error message.", + "id": "COMPILER_ORPHAN_SECTIONS_PLACE", + "name": "COMPILER_ORPHAN_SECTIONS_PLACE", + "range": null, + "title": "Place silently", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_LINUX", + "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", + "id": "compiler-options-orphan-sections-handling", + "name": "COMPILER_ORPHAN_SECTIONS", + "title": "Orphan sections handling", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", + "id": "COMPILER_STATIC_ANALYZER", + "name": "COMPILER_STATIC_ANALYZER", + "range": null, + "title": "Enable compiler static analyzer", + "type": "bool" + } + ], + "depends_on": null, + "id": "compiler-options", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "This configuration option used to bypass the conflict check mechanism with legacy code.", + "id": "TWAI_SKIP_LEGACY_CONFLICT_CHECK", + "name": "TWAI_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy driver conflict check", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", + "help": "When the bus-off condition is reached, the REC should be reset to 0 and frozen (via LOM) by the\ndriver's ISR. However on the ESP32, there is an edge case where the REC will increase before the\ndriver's ISR can respond in time (e.g., due to the rapid occurrence of bus errors), thus causing the\nREC to be non-zero after bus-off. A non-zero REC can prevent bus-off recovery as the bus-off recovery\ncondition is that both TEC and REC become 0. Enabling this option will add a workaround in the driver\nto forcibly reset REC to zero on reaching bus-off.", + "id": "TWAI_ERRATA_FIX_BUS_OFF_REC", + "name": "TWAI_ERRATA_FIX_BUS_OFF_REC", + "range": null, + "title": "Add SW workaround for REC change during bus-off", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", + "help": "On the ESP32, when a transmit interrupt occurs, and interrupt register is read on the same APB clock\ncycle, the transmit interrupt could be lost. Enabling this option will add a workaround that checks the\ntransmit buffer status bit to recover any lost transmit interrupt.", + "id": "TWAI_ERRATA_FIX_TX_INTR_LOST", + "name": "TWAI_ERRATA_FIX_TX_INTR_LOST", + "range": null, + "title": "Add SW workaround for TX interrupt lost errata", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", + "help": "On the ESP32, when receiving a data or remote frame, if a bus error occurs in the data or CRC field,\nthe data of the next received frame could be invalid. Enabling this option will add a workaround that\nwill reset the peripheral on detection of this errata condition. Note that if a frame is transmitted on\nthe bus whilst the reset is ongoing, the message will not be receive by the peripheral sent on the bus\nduring the reset, the message will be lost.", + "id": "TWAI_ERRATA_FIX_RX_FRAME_INVALID", + "name": "TWAI_ERRATA_FIX_RX_FRAME_INVALID", + "range": null, + "title": "Add SW workaround for invalid RX frame errata", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", + "help": "On the ESP32, when the RX FIFO overruns and the RX message counter maxes out at 64 messages, the entire\nRX FIFO is no longer recoverable. Enabling this option will add a workaround that resets the peripheral\non detection of this errata condition. Note that if a frame is being sent on the bus during the reset\nbus during the reset, the message will be lost.", + "id": "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT", + "name": "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT", + "range": null, + "title": "Add SW workaround for RX FIFO corruption errata", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3) && SOC_TWAI_SUPPORTED", + "help": "When in the listen only mode, the TWAI controller must not influence the TWAI bus (i.e., must not send\nany dominant bits). However, while in listen only mode on the ESP32/ESP32-S2/ESP32-S3/ESP32-C3, the\nTWAI controller will still transmit dominant bits when it detects an error (i.e., as part of an active\nerror frame). Enabling this option will add a workaround that forces the TWAI controller into an error\npassive state on initialization, thus preventing any dominant bits from being sent.", + "id": "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM", + "name": "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM", + "range": null, + "title": "Add SW workaround for listen only transmits dominant bit errata", + "type": "bool" + } + ], + "depends_on": "SOC_TWAI_SUPPORTED", + "id": "component-config-driver-configurations-legacy-twai-driver-configurations", + "title": "Legacy TWAI Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified\nchannel. This is the default value.\n\nFor testing, disable this option so that we can measure the output of DAC by internal ADC.", + "id": "ADC_DISABLE_DAC", + "name": "ADC_DISABLE_DAC", + "range": null, + "title": "Disable DAC when ADC2 is used on GPIO 25 and 26", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Whether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "ADC_SUPPRESS_DEPRECATE_WARN", + "name": "ADC_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "ADC_SKIP_LEGACY_CONFLICT_CHECK", + "name": "ADC_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\nThis option will allow the ADC calibration component to characterize the\nADC-Voltage curve using Two Point values if they are available.", + "id": "ADC_CAL_EFUSE_TP_ENABLE", + "name": "ADC_CAL_EFUSE_TP_ENABLE", + "range": null, + "title": "Use Two Point Values", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\nthe ADC calibration component to characterize the ADC-Voltage curve using\neFuse Vref if it is available.", + "id": "ADC_CAL_EFUSE_VREF_ENABLE", + "name": "ADC_CAL_EFUSE_VREF_ENABLE", + "range": null, + "title": "Use eFuse Vref", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "This option will allow the ADC calibration component to use Lookup Tables\nto correct for non-linear behavior in 11db attenuation. Other attenuations\ndo not exhibit non-linear behavior hence will not be affected by this option.", + "id": "ADC_CAL_LUT_ENABLE", + "name": "ADC_CAL_LUT_ENABLE", + "range": null, + "title": "Use Lookup Tables", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Whether to suppress the deprecation warnings when using legacy adc calibration\ndriver (esp_adc_cal.h).\nIf you want to continue using the legacy driver, and don't want to see related\ndeprecation warnings, you can enable this option.", + "id": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", + "name": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-legacy-adc-driver-configuration-legacy-adc-calibration-configuration", + "title": "Legacy ADC Calibration Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-legacy-adc-driver-configuration", + "title": "Legacy ADC Driver Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy dac driver (driver/dac.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "DAC_SUPPRESS_DEPRECATE_WARN", + "name": "DAC_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "DAC_SKIP_LEGACY_CONFLICT_CHECK", + "name": "DAC_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_DAC_SUPPORTED", + "id": "component-config-driver-configurations-legacy-dac-driver-configurations", + "title": "Legacy DAC Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "MCPWM_SUPPRESS_DEPRECATE_WARN", + "name": "MCPWM_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "MCPWM_SKIP_LEGACY_CONFLICT_CHECK", + "name": "MCPWM_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_MCPWM_SUPPORTED", + "id": "component-config-driver-configurations-legacy-mcpwm-driver-configurations", + "title": "Legacy MCPWM Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy timer group driver (driver/timer.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "GPTIMER_SUPPRESS_DEPRECATE_WARN", + "name": "GPTIMER_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK", + "name": "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "id": "component-config-driver-configurations-legacy-timer-group-driver-configurations", + "title": "Legacy Timer Group Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "RMT_SUPPRESS_DEPRECATE_WARN", + "name": "RMT_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "RMT_SKIP_LEGACY_CONFLICT_CHECK", + "name": "RMT_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_RMT_SUPPORTED", + "id": "component-config-driver-configurations-legacy-rmt-driver-configurations", + "title": "Legacy RMT Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "Whether to suppress the deprecation warnings when using legacy i2s driver (driver/i2s.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "I2S_SUPPRESS_DEPRECATE_WARN", + "name": "I2S_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "I2S_SKIP_LEGACY_CONFLICT_CHECK", + "name": "I2S_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_I2S_SUPPORTED", + "id": "component-config-driver-configurations-legacy-i2s-driver-configurations", + "title": "Legacy I2S Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "I2C_SKIP_LEGACY_CONFLICT_CHECK", + "name": "I2C_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_I2C_SUPPORTED", + "id": "component-config-driver-configurations-legacy-i2c-driver-configurations", + "title": "Legacy I2C Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "PCNT_SUPPRESS_DEPRECATE_WARN", + "name": "PCNT_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "PCNT_SKIP_LEGACY_CONFLICT_CHECK", + "name": "PCNT_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_PCNT_SUPPORTED", + "id": "component-config-driver-configurations-legacy-pcnt-driver-configurations", + "title": "Legacy PCNT Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy SDM driver (driver/sigmadelta.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", + "id": "SDM_SUPPRESS_DEPRECATE_WARN", + "name": "SDM_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "SDM_SKIP_LEGACY_CONFLICT_CHECK", + "name": "SDM_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_SDM_SUPPORTED", + "id": "component-config-driver-configurations-legacy-sdm-driver-configurations", + "title": "Legacy SDM Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy temperature sensor driver\n(driver/temp_sensor.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", + "id": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", + "name": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK", + "name": "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "id": "component-config-driver-configurations-legacy-temperature-sensor-driver-configurations", + "title": "Legacy Temperature Sensor Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy touch sensor driver\n(driver/touch_sensor.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", + "id": "TOUCH_SUPPRESS_DEPRECATE_WARN", + "name": "TOUCH_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "TOUCH_SKIP_LEGACY_CONFLICT_CHECK", + "name": "TOUCH_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "id": "component-config-driver-configurations-legacy-touch-sensor-driver-configurations", + "title": "Legacy Touch Sensor Driver Configurations", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations", + "title": "Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_CUSTOM_TABLE", + "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "EFUSE_CUSTOM_TABLE_FILENAME", + "name": "EFUSE_CUSTOM_TABLE_FILENAME", + "range": null, + "title": "Custom eFuse CSV file", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to generate a structure for eFuse from the CSV file.", + "id": "EFUSE_CUSTOM_TABLE", + "name": "EFUSE_CUSTOM_TABLE", + "range": null, + "title": "Use custom eFuse table", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", + "help": "In addition to the \"Simulate eFuse operations in RAM\" option, this option just adds\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\nshould have the `efuse` partition. partition.csv: \"efuse_em, data, efuse, , 0x2000,\"\n\nDuring startup, the eFuses are copied from flash or,\nin case if flash is empty, from real eFuse to RAM and then update flash.\nThis mode is useful when need to keep changes after reboot\n(testing secure_boot and flash_encryption).", + "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "range": null, + "title": "Keep eFuses in flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "EFUSE_VIRTUAL", + "help": "If enabled, log efuse burns. This shows changes that would be made.", + "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "range": null, + "title": "Log all virtual writes", + "type": "bool" + } + ], + "depends_on": null, + "help": "If \"n\" - No virtual mode. All eFuse operations are real and use eFuse registers.\nIf \"y\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\nLog output will state changes that would be applied, but they will not be.\n\nIf it is \"y\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\nBecause the EFUSE VIRT mode is for testing only.\n\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.", + "id": "EFUSE_VIRTUAL", + "name": "EFUSE_VIRTUAL", + "range": null, + "title": "Simulate eFuse operations in RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "range": null, + "title": "None Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "range": null, + "title": "3/4 and None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "range": null, + "title": "Repeat, 3/4 and None (common table does not support it)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "Selector eFuse code scheme.", + "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", + "name": "EFUSE_CODE_SCHEME_SELECTOR", + "title": "Coding Scheme Compatibility", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "EFUSE_MAX_BLK_LEN", + "name": "EFUSE_MAX_BLK_LEN", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-efuse-bit-manager", + "title": "eFuse Bit Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place ISR version ADC oneshot mode read function into IRAM.", + "id": "ADC_ONESHOT_CTRL_FUNC_IN_IRAM", + "name": "ADC_ONESHOT_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place ISR version ADC oneshot mode read function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ADC_DMA_SUPPORTED", + "help": "Ensure the ADC continuous mode ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "ADC_CONTINUOUS_ISR_IRAM_SAFE", + "name": "ADC_CONTINUOUS_ISR_IRAM_SAFE", + "range": null, + "title": "ADC continuous mode driver ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\nThis option will allow the ADC calibration component to characterize the\nADC-Voltage curve using Two Point values if they are available.", + "id": "ADC_CALI_EFUSE_TP_ENABLE", + "name": "ADC_CALI_EFUSE_TP_ENABLE", + "range": null, + "title": "Use Two Point Values", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\nthe ADC calibration component to characterize the ADC-Voltage curve using\neFuse Vref if it is available.", + "id": "ADC_CALI_EFUSE_VREF_ENABLE", + "name": "ADC_CALI_EFUSE_VREF_ENABLE", + "range": null, + "title": "Use eFuse Vref", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "This option will allow the ADC calibration component to use Lookup Tables\nto correct for non-linear behavior in 11db attenuation. Other attenuations\ndo not exhibit non-linear behavior hence will not be affected by this option.", + "id": "ADC_CALI_LUT_ENABLE", + "name": "ADC_CALI_LUT_ENABLE", + "range": null, + "title": "Use Lookup Tables", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "id": "component-config-adc-and-adc-calibration-adc-calibration-configurations", + "title": "ADC Calibration Configurations", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "By default, this is set. The ADC oneshot driver will disable the output of the\ncorresponding DAC channels:\nESP32: IO25 and IO26\nESP32S2: IO17 and IO18\n\nDisable this option so as to measure the output of DAC by internal ADC, for test usage.", + "id": "ADC_DISABLE_DAC_OUTPUT", + "name": "ADC_DISABLE_DAC_OUTPUT", + "range": null, + "title": "Disable DAC when ADC2 is in use", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3", + "help": "On ESP32C3 and ESP32S3, ADC2 Digital Controller is not stable. Therefore,\nADC2 continuous mode is not suggested on ESP32S3 and ESP32C3\n\nIf you stick to this, you can enable this option to force use ADC2 under above conditions.\nFor more details, you can search for errata on espressif website.", + "id": "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3", + "name": "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3", + "range": null, + "title": "Force use ADC2 continuous mode on ESP32S3 or ESP32C3", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C3", + "help": "On ESP32C3, ADC2 Digital Controller is not stable. Therefore,\nADC2 oneshot mode is not suggested on ESP32C3\n\nIf you stick to this, you can enable this option to force use ADC2 under above conditions.\nFor more details, you can search for errata on espressif website.", + "id": "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3", + "name": "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3", + "range": null, + "title": "Force use ADC2 oneshot mode on ESP32C3", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "whether to enable the debug log message for ADC driver.\nNote that this option only controls the ADC driver log, will not affect other drivers.\n\nnote: This cannot be used in the ADC legacy driver.", + "id": "ADC_ENABLE_DEBUG_LOG", + "name": "ADC_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable ADC debug log", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-adc-and-adc-calibration", + "title": "ADC and ADC Calibration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", + "id": "ESP_ERR_TO_NAME_LOOKUP", + "name": "ESP_ERR_TO_NAME_LOOKUP", + "range": null, + "title": "Enable lookup of error code strings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-common-esp-related", + "title": "Common ESP-related", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "Place Analog Comparator ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "ANA_CMPR_ISR_HANDLER_IN_IRAM", + "name": "ANA_CMPR_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place Analog Comparator ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "Place Analog Comparator control functions (like ana_cmpr_set_internal_reference) into IRAM,\nso that these functions can be IRAM-safe and able to be called in an IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "ANA_CMPR_CTRL_FUNC_IN_IRAM", + "name": "ANA_CMPR_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place Analog Comparator control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "Enable this option to allow the Analog Comparator Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the comparator functionality is still required to operate correctly.", + "id": "ANA_CMPR_ISR_CACHE_SAFE", + "name": "ANA_CMPR_ISR_CACHE_SAFE", + "range": null, + "title": "Allow Analog Comparator ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "This will ensure the driver object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "ANA_CMPR_OBJ_CACHE_SAFE", + "name": "ANA_CMPR_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "If enabled, the driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "ANA_CMPR_ENABLE_DEBUG_LOG", + "name": "ANA_CMPR_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "id": "component-config-esp-driver-analog-comparator-configurations", + "title": "ESP-Driver:Analog Comparator Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", + "help": "Place BitScrambler control functions into IRAM for better performance and fewer cache misses.", + "id": "BITSCRAMBLER_CTRL_FUNC_IN_IRAM", + "name": "BITSCRAMBLER_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place BitScrambler control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", + "help": "This will ensure the BitScrambler object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "BITSCRAMBLER_OBJ_CACHE_SAFE", + "name": "BITSCRAMBLER_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", + "id": "component-config-bitscrambler-configurations", + "title": "BitScrambler Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "Place DAC control functions (e.g. 'dac_oneshot_output_voltage') into IRAM,\nso that this function can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "DAC_CTRL_FUNC_IN_IRAM", + "name": "DAC_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place DAC control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "Ensure the DAC interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "DAC_ISR_IRAM_SAFE", + "name": "DAC_ISR_IRAM_SAFE", + "range": null, + "title": "DAC ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "whether to enable the debug log message for DAC driver.\nNote that, this option only controls the DAC driver log, won't affect other drivers.", + "id": "DAC_ENABLE_DEBUG_LOG", + "name": "DAC_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_DMA_16BIT_ALIGN && SOC_DAC_SUPPORTED", + "help": "Whether to left shift the continuous data to align every bytes to 16 bits in the driver.\nOn ESP32, although the DAC resolution is only 8 bits,\nthe hardware requires 16 bits data in continuous mode.\nBy enabling this option, the driver will left shift 8 bits for the input data automatically.\nOnly disable this option when you decide to do this step by yourself.\nNote that the driver will allocate a new piece of memory to save the converted data.", + "id": "DAC_DMA_AUTO_16BIT_ALIGN", + "name": "DAC_DMA_AUTO_16BIT_ALIGN", + "range": null, + "title": "Align the continuous data to 16 bit automatically", + "type": "bool" + } + ], + "depends_on": "SOC_DAC_SUPPORTED", + "id": "component-config-esp-driver-dac-configurations", + "title": "ESP-Driver:DAC Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "This option is intended to fix the bug that ESP32 is not able to switch to configured\npullup/pulldown mode in sleep.\nIf this option is selected, chip will automatically emulate the behaviour of switching,\nand about 450B of source codes would be placed into IRAM.", + "id": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", + "name": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", + "range": null, + "title": "Support light sleep GPIO pullup/pulldown configuration for ESP32", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place GPIO control functions (like intr_disable/set_level) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "GPIO_CTRL_FUNC_IN_IRAM", + "name": "GPIO_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GPIO control functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-gpio-configurations", + "title": "ESP-Driver:GPIO Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Place GPTimer ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "GPTIMER_ISR_HANDLER_IN_IRAM", + "name": "GPTIMER_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place GPTimer ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Place GPTimer control functions (like start/stop) in IRAM, to reduce latency caused by cache miss.\nIf enabled, these functions can also be called when cache is disabled.", + "id": "GPTIMER_CTRL_FUNC_IN_IRAM", + "name": "GPTIMER_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GPTimer control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Enable this option to allow the GPTimer Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the GPTimer functionality is still required to operate correctly.", + "id": "GPTIMER_ISR_CACHE_SAFE", + "name": "GPTIMER_ISR_CACHE_SAFE", + "range": null, + "title": "Allow GPTimer ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "This will ensure the GPTimer object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "GPTIMER_OBJ_CACHE_SAFE", + "name": "GPTIMER_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "If enabled, GPTimer component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "GPTIMER_ENABLE_DEBUG_LOG", + "name": "GPTIMER_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "id": "component-config-esp-driver-gptimer-configurations", + "title": "ESP-Driver:GPTimer Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "Ensure the I2C interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).\nnote: This cannot be used in the I2C legacy driver.", + "id": "I2C_ISR_IRAM_SAFE", + "name": "I2C_ISR_IRAM_SAFE", + "range": null, + "title": "I2C ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "whether to enable the debug log message for I2C driver.\nNote that this option only controls the I2C driver log, will not affect other drivers.\n\nnote: This cannot be used in the I2C legacy driver.", + "id": "I2C_ENABLE_DEBUG_LOG", + "name": "I2C_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable I2C debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "I2C slave version 2 solves some existing known issues. Such as write/read workflow, stretch handling, etc.", + "id": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", + "name": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", + "range": null, + "title": "Enable I2C slave driver version 2", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "Place I2C master ISR handler into IRAM for better performance and fewer cache misses.", + "id": "I2C_MASTER_ISR_HANDLER_IN_IRAM", + "name": "I2C_MASTER_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place I2C master ISR handler into IRAM", + "type": "bool" + } + ], + "depends_on": "SOC_I2C_SUPPORTED", + "id": "component-config-esp-driver-i2c-configurations", + "title": "ESP-Driver:I2C Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "Ensure the I2S interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "I2S_ISR_IRAM_SAFE", + "name": "I2S_ISR_IRAM_SAFE", + "range": null, + "title": "I2S ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "whether to enable the debug log message for I2S driver.\nNote that, this option only controls the I2S driver log, will not affect other drivers.", + "id": "I2S_ENABLE_DEBUG_LOG", + "name": "I2S_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable I2S debug log", + "type": "bool" + } + ], + "depends_on": "SOC_I2S_SUPPORTED", + "id": "component-config-esp-driver-i2s-configurations", + "title": "ESP-Driver:I2S Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place LEDC control functions (ledc_update_duty and ledc_stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in an IRAM context.\nEnabling this option can improve driver performance as well.", + "id": "LEDC_CTRL_FUNC_IN_IRAM", + "name": "LEDC_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place LEDC control functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-ledc-configurations", + "title": "ESP-Driver:LEDC Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Place MCPWM ISR handler(s) in IRAM to reduce latency caused by cache miss.", + "id": "MCPWM_ISR_HANDLER_IN_IRAM", + "name": "MCPWM_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place MCPWM ISR handler into IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Enable this option to allow the MCPWM Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the MCPWM functionality is still required to operate correctly.", + "id": "MCPWM_ISR_CACHE_SAFE", + "name": "MCPWM_ISR_CACHE_SAFE", + "range": null, + "title": "Allow MCPWM ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Place MCPWM control functions in IRAM, to reduce latency caused by cache miss.\nIf enabled, these functions can also be called when cache is disabled.", + "id": "MCPWM_CTRL_FUNC_IN_IRAM", + "name": "MCPWM_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place MCPWM control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "This will ensure the MCPWM object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "MCPWM_OBJ_CACHE_SAFE", + "name": "MCPWM_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "If enabled, MCPWM component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option with caution, as it will increase the binary size.", + "id": "MCPWM_ENABLE_DEBUG_LOG", + "name": "MCPWM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_MCPWM_SUPPORTED", + "id": "component-config-esp-driver-mcpwm-configurations", + "title": "ESP-Driver:MCPWM Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Place Parallel IO TX ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "PARLIO_TX_ISR_HANDLER_IN_IRAM", + "name": "PARLIO_TX_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place Parallel IO TX ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Place Parallel IO RX ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "PARLIO_RX_ISR_HANDLER_IN_IRAM", + "name": "PARLIO_RX_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place Parallel IO RX ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Enable this option to allow the Parallel IO TX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the Parallel IO TX functionality is still required to operate correctly.", + "id": "PARLIO_TX_ISR_CACHE_SAFE", + "name": "PARLIO_TX_ISR_CACHE_SAFE", + "range": null, + "title": "Allow Parallel IO TX ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Enable this option to allow the Parallel IO RX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the Parallel IO RX functionality is still required to operate correctly.", + "id": "PARLIO_RX_ISR_CACHE_SAFE", + "name": "PARLIO_RX_ISR_CACHE_SAFE", + "range": null, + "title": "Allow Parallel IO RX ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "This will ensure the driver object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "PARLIO_OBJ_CACHE_SAFE", + "name": "PARLIO_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "If enabled, Parallel IO driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "PARLIO_ENABLE_DEBUG_LOG", + "name": "PARLIO_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Ensure the Parallel IO interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "PARLIO_ISR_IRAM_SAFE", + "name": "PARLIO_ISR_IRAM_SAFE", + "range": null, + "title": "Parallel IO ISR IRAM-Safe (Deprecated)", + "type": "bool" + } + ], + "depends_on": "SOC_PARLIO_SUPPORTED", + "id": "component-config-esp-driver-parallel-io-configurations", + "title": "ESP-Driver:Parallel IO Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "Place PCNT control functions (like start/stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "PCNT_CTRL_FUNC_IN_IRAM", + "name": "PCNT_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place PCNT control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "Ensure the PCNT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "PCNT_ISR_IRAM_SAFE", + "name": "PCNT_ISR_IRAM_SAFE", + "range": null, + "title": "PCNT ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "whether to enable the debug log message for PCNT driver.\nNote that, this option only controls the PCNT driver log, won't affect other drivers.", + "id": "PCNT_ENABLE_DEBUG_LOG", + "name": "PCNT_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_PCNT_SUPPORTED", + "id": "component-config-esp-driver-pcnt-configurations", + "title": "ESP-Driver:PCNT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT encoder function into IRAM for better performance and fewer cache misses.", + "id": "RMT_ENCODER_FUNC_IN_IRAM", + "name": "RMT_ENCODER_FUNC_IN_IRAM", + "range": null, + "title": "Place RMT encoder function in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT TX ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "RMT_TX_ISR_HANDLER_IN_IRAM", + "name": "RMT_TX_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place RMT TX ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT RX ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "RMT_RX_ISR_HANDLER_IN_IRAM", + "name": "RMT_RX_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place RMT RX ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT receive function into IRAM for better performance and fewer cache misses.", + "id": "RMT_RECV_FUNC_IN_IRAM", + "name": "RMT_RECV_FUNC_IN_IRAM", + "range": null, + "title": "Place RMT receive function in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Enable this option to allow the RMT TX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the RMT TX functionality is still required to operate correctly.", + "id": "RMT_TX_ISR_CACHE_SAFE", + "name": "RMT_TX_ISR_CACHE_SAFE", + "range": null, + "title": "Allow RMT TX ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Enable this option to allow the RMT RX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the RMT RX functionality is still required to operate correctly.", + "id": "RMT_RX_ISR_CACHE_SAFE", + "name": "RMT_RX_ISR_CACHE_SAFE", + "range": null, + "title": "Allow RMT RX ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "This will ensure the RMT object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "RMT_OBJ_CACHE_SAFE", + "name": "RMT_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "If enabled, RMT driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "RMT_ENABLE_DEBUG_LOG", + "name": "RMT_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Ensure the RMT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "RMT_ISR_IRAM_SAFE", + "name": "RMT_ISR_IRAM_SAFE", + "range": null, + "title": "RMT ISR IRAM-Safe (Deprecated)", + "type": "bool" + } + ], + "depends_on": "SOC_RMT_SUPPORTED", + "id": "component-config-esp-driver-rmt-configurations", + "title": "ESP-Driver:RMT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "Place SDM control functions (like set_duty) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", + "id": "SDM_CTRL_FUNC_IN_IRAM", + "name": "SDM_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place SDM control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "whether to enable the debug log message for SDM driver.\nNote that, this option only controls the SDM driver log, won't affect other drivers.", + "id": "SDM_ENABLE_DEBUG_LOG", + "name": "SDM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_SDM_SUPPORTED", + "id": "component-config-esp-driver-sigma-delta-modulator-configurations", + "title": "ESP-Driver:Sigma Delta Modulator Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!FREERTOS_PLACE_FUNCTIONS_INTO_FLASH && SOC_GPSPI_SUPPORTED", + "help": "Normally only the ISR of SPI master is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.\n\nThis configuration won't be available if `CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH` is enabled.\n\nDuring unit test, this is enabled to measure the ideal case of api.", + "id": "SPI_MASTER_IN_IRAM", + "name": "SPI_MASTER_IN_IRAM", + "range": null, + "title": "Place transmitting functions of SPI master into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!HEAP_PLACE_FUNCTION_INTO_FLASH && SOC_GPSPI_SUPPORTED", + "help": "Place the SPI master ISR in to IRAM to avoid possible cache miss.\n\nEnabling this configuration is possible only when HEAP_PLACE_FUNCTION_INTO_FLASH\nis disabled since the spi master uses can allocate transactions buffers into DMA\nmemory section using the heap component API that ipso facto has to be placed in IRAM.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", + "id": "SPI_MASTER_ISR_IN_IRAM", + "name": "SPI_MASTER_ISR_IN_IRAM", + "range": null, + "title": "Place SPI master ISR function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPSPI_SUPPORTED", + "help": "Normally only the ISR of SPI slave is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.", + "id": "SPI_SLAVE_IN_IRAM", + "name": "SPI_SLAVE_IN_IRAM", + "range": null, + "title": "Place transmitting functions of SPI slave into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPSPI_SUPPORTED", + "help": "Place the SPI slave ISR in to IRAM to avoid possible cache miss.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", + "id": "SPI_SLAVE_ISR_IN_IRAM", + "name": "SPI_SLAVE_ISR_IN_IRAM", + "range": null, + "title": "Place SPI slave ISR function into IRAM", + "type": "bool" + } + ], + "depends_on": "SOC_GPSPI_SUPPORTED", + "id": "component-config-esp-driver-spi-configurations", + "title": "ESP-Driver:SPI Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "whether to enable the debug log message for temperature sensor driver.\nNote that, this option only controls the temperature sensor driver log, won't affect other drivers.", + "id": "TEMP_SENSOR_ENABLE_DEBUG_LOG", + "name": "TEMP_SENSOR_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT && SOC_TEMP_SENSOR_SUPPORTED", + "help": "Ensure the Temperature Sensor interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "TEMP_SENSOR_ISR_IRAM_SAFE", + "name": "TEMP_SENSOR_ISR_IRAM_SAFE", + "range": null, + "title": "Temperature sensor ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "id": "component-config-esp-driver-temperature-sensor-configurations", + "title": "ESP-Driver:Temperature Sensor Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "Place the TWAI ISR in to IRAM to reduce latency and increase performance", + "id": "TWAI_ISR_IN_IRAM", + "name": "TWAI_ISR_IN_IRAM", + "range": null, + "title": "Place TWAI ISR function in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "Allow TWAI works under Cache disabled (such as when writing to SPI Flash),\nto enabled this config, all callbacks and user_ctx should also place in IRAM", + "id": "TWAI_ISR_CACHE_SAFE", + "name": "TWAI_ISR_CACHE_SAFE", + "range": null, + "title": "Allow TWAI ISR execute when cache disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "This will ensure the TWAI driver object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "TWAI_OBJ_CACHE_SAFE", + "name": "TWAI_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "If enabled, TWAI driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "TWAI_ENABLE_DEBUG_LOG", + "name": "TWAI_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_TWAI_SUPPORTED", + "id": "component-config-esp-driver-twai-configurations", + "title": "ESP-Driver:TWAI Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "help": "If this option is not selected, UART interrupt will be disabled for a long time and\nmay cause data lost when doing spi flash operation.", + "id": "UART_ISR_IN_IRAM", + "name": "UART_ISR_IN_IRAM", + "range": null, + "title": "Place UART ISR function into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-uart-configurations", + "title": "ESP-Driver:UART Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If this option is not selected, UHCI interrupt will be disabled for a long time and\nmay cause data lost when doing spi flash operation.", + "id": "UHCI_ISR_HANDLER_IN_IRAM", + "name": "UHCI_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place UHCI ISR function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to allow the ISR for UHCI to execute even when the cache is disabled.\nThis can be useful in scenarios where the cache might be turned off, but the UHCI\nfunctionality is still required to operate correctly.", + "id": "UHCI_ISR_CACHE_SAFE", + "name": "UHCI_ISR_CACHE_SAFE", + "range": null, + "title": "Allow UHCI ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "whether to enable the debug log message for UHCI driver.\nNote that, this option only controls the UHCI driver log, won't affect other drivers.", + "id": "UHCI_ENABLE_DEBUG_LOG", + "name": "UHCI_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-uhci-configurations", + "title": "ESP-Driver:UHCI Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "PM_ENABLE && ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED && !SOC_USB_SERIAL_JTAG_SUPPORT_LIGHT_SLEEP && USJ_ENABLE_USB_SERIAL_JTAG && SOC_USB_SERIAL_JTAG_SUPPORTED", + "help": "If enabled, the chip will constantly monitor the connection status of the USB Serial/JTAG port. As long\nas the USB Serial/JTAG is connected, a ESP_PM_NO_LIGHT_SLEEP power management lock will be acquired to\nprevent the system from entering light sleep.\nThis option can be useful if serial monitoring is needed via USB Serial/JTAG while power management is\nenabled, as the USB Serial/JTAG cannot work under light sleep and after waking up from light sleep.\nNote. This option can only control the automatic Light-Sleep behavior. If esp_light_sleep_start() is\ncalled manually from the program, enabling this option will not prevent light sleep entry even if the\nUSB Serial/JTAG is in use.", + "id": "USJ_NO_AUTO_LS_ON_CONNECTION", + "name": "USJ_NO_AUTO_LS_ON_CONNECTION", + "range": null, + "title": "Don't enter the automatic light sleep when USB Serial/JTAG port is connected", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "help": "The USB-Serial-JTAG module on ESP chips is turned on by default after power-on.\nIf your application does not need it and not rely on it to be used as system\nconsole or use the built-in JTAG for debugging, you can disable this option,\nthen the clock of this module will be disabled at startup, which will save\nsome power consumption.", + "id": "USJ_ENABLE_USB_SERIAL_JTAG", + "name": "USJ_ENABLE_USB_SERIAL_JTAG", + "range": null, + "title": "Enable USB-Serial-JTAG Module", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "id": "component-config-esp-driver-usb-serial-jtag-configuration", + "title": "ESP-Driver:USB Serial/JTAG Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_0", + "name": "ESP32S3_REV_MIN_0", + "range": null, + "title": "Rev v0.0 (ECO0)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_1", + "name": "ESP32S3_REV_MIN_1", + "range": null, + "title": "Rev v0.1 (ECO1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_REV_MIN_2", + "name": "ESP32S3_REV_MIN_2", + "range": null, + "title": "Rev v0.2 (ECO2)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Required minimum chip revision. ESP-IDF will check for it and\nreject to boot if the chip revision fails the check.\nThis ensures the chip used will have some modifications (features, or bugfixes).\n\nThe complied binary will only support chips above this revision,\nthis will also help to reduce binary size.", + "id": "component-config-hardware-settings-chip-revision-minimum-supported-esp32-s3-revision", + "name": "ESP32S3_REV_MIN", + "title": "Minimum Supported ESP32-S3 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_REV_MIN_FULL", + "name": "ESP32S3_REV_MIN_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MIN_FULL", + "name": "ESP_REV_MIN_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_REV_MAX_FULL", + "name": "ESP32S3_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MAX_FULL", + "name": "ESP_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", + "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "range": null, + "title": "Minimum Supported ESP32-S3 eFuse Block Revision", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_CI_BUILD", + "help": "For internal chip testing, a small number of new versions chips didn't\nupdate the version field in eFuse, you can enable this option to force the\nsoftware recognize the chip version based on the rev selected in menuconfig.", + "id": "ESP_REV_NEW_CHIP_TEST", + "name": "ESP_REV_NEW_CHIP_TEST", + "range": null, + "title": "Internal test mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-chip-revision", + "title": "Chip revision", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_BT", + "name": "ESP_MAC_ADDR_UNIVERSE_BT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_ETH", + "name": "ESP_MAC_ADDR_UNIVERSE_ETH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": "Four", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure the number of universally administered (by IEEE) MAC addresses.\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.\nIf the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap,\nBluetooth and Ethernet) receive a universally administered MAC address. These are generated\nsequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.\nIf the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)\nreceive a universally administered MAC address. These are generated sequentially by adding 0\nand 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethernet)\nreceive local MAC addresses. These are derived from the universal WiFi station and Bluetooth MAC\naddresses, respectively.\nWhen using the default (Espressif-assigned) base MAC address, either setting can be used. When using\na custom universal MAC address range, the correct setting will depend on the allocation of MAC\naddresses in this range (either 2 or 4 per device.)", + "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32S3_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\nand you still want to use this chip, you can enable this option to bypass such an error.\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.", + "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "range": null, + "title": "Ignore MAC CRC error (not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", + "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "range": null, + "title": "Enable using custom mac as base mac", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-mac-config", + "title": "MAC Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", + "help": "If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\n\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.", + "id": "ESP_SLEEP_POWER_DOWN_FLASH", + "name": "ESP_SLEEP_POWER_DOWN_FLASH", + "range": null, + "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of SPI Flash is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in Flash may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of Flash to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of SPI Flash in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external SPI Flash CS pin pullups.)", + "id": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "name": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "range": null, + "title": "Pull-up Flash CS pin in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM", + "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of PSRAM is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in PSRAM may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of PSRAM to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of PSRAM in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external PSRAM CS pin pullups.)", + "id": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", + "name": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", + "range": null, + "title": "Pull-up PSRAM CS pin in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "help": "To reduce leakage current, some types of SPI Flash/RAM only need to pull up the CS pin\nduring light sleep. But there are also some kinds of SPI Flash/RAM that need to pull up\nall pins. It depends on the SPI Flash/RAM chip used.", + "id": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", + "name": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", + "range": null, + "title": "Pull-up all SPI pins in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", + "name": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "esp32c2, esp32c3, esp32s3, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", + "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "range": null, + "title": "light sleep GPIO reset workaround", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS active) are usually named tVSL in ELECTRICAL CHARACTERISTICS chapter,\nand the configuration value here should be:\nESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY = tVSL - 900\n\nFor esp32 and esp32s3, the default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the console after deep sleep reset\non esp32, or triggered RTC_WDT/LP_WDT after lightsleep wakeup, try increasing this value.\n(For esp32, the delay will be executed in both deep sleep and light sleep wake up flow.\nFor chips after esp32, the delay will be executed only in light sleep flow, the delay\ncontrolled by the EFUSE_FLASH_TPUW in ROM will be executed in deepsleep wake up flow.)", + "id": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "name": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "range": [ + 0, + 5000 + ], + "title": "Extra delay (in us) after flash powerdown sleep wakeup to wait flash ready", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling it will check the cache safety of the code before the flash power is ready after\nlight sleep wakeup, and check PM_SLP_IRAM_OPT related code cache safety. This option is\nonly for code quality inspection. Enabling it will increase the time overhead of entering\nand exiting sleep. It is not recommended to enable it in the release version.", + "id": "ESP_SLEEP_CACHE_SAFE_ASSERTION", + "name": "ESP_SLEEP_CACHE_SAFE_ASSERTION", + "range": null, + "title": "Check the cache safety of the sleep wakeup code in sleep process", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable esp sleep debug.", + "id": "ESP_SLEEP_DEBUG", + "name": "ESP_SLEEP_DEBUG", + "range": null, + "title": "esp sleep debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\nmake use of the internal ones.", + "id": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", + "name": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", + "range": null, + "title": "Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, it allows user to register sleep event callbacks. It is primarily designed for internal\ndevelopers and customers can use PM_LIGHT_SLEEP_CALLBACKS as an alternative.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in\ncallback and hence it is highly recommended to keep them as short as possible.", + "id": "ESP_SLEEP_EVENT_CALLBACKS", + "name": "ESP_SLEEP_EVENT_CALLBACKS", + "range": null, + "title": "Enable registration of sleep event callbacks", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-sleep-config", + "title": "Sleep Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_RC", + "name": "RTC_CLK_SRC_INT_RC", + "range": null, + "title": "Internal 136 kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_CRYS", + "name": "RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32 kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32 kHz oscillator at 32K_XP pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_8MD256", + "name": "RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 17.5 MHz oscillator, divided by 256", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When the startup code initializes RTC_SLOW_CLK, it can perform\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\nby the calibration routine. Higher numbers increase calibration\nprecision, which may be important for applications which spend a lot of\ntime in deep sleep. Lower numbers reduce startup time.\n\nWhen this option is set to 0, clock calibration will not be performed at\nstartup, and approximate clock frequencies will be assumed:\n\n- 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", + "id": "RTC_CLK_CAL_CYCLES", + "name": "RTC_CLK_CAL_CYCLES", + "range": [ + 0, + 32766 + ], + "title": "Number of cycles for RTC_SLOW_CLK calibration", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-rtc-clock-config", + "title": "RTC Clock Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place peripheral control functions (e.g. periph_module_reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", + "name": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place peripheral control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place analog i2c master control functions (e.g. regi2c_ctrl_read_reg, regi2c_ctrl_write_reg) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", + "name": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place regi2c control functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-peripheral-control", + "title": "Peripheral Control", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ETM_SUPPORTED", + "help": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", + "id": "ETM_ENABLE_DEBUG_LOG", + "name": "ETM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ETM_SUPPORTED", + "id": "component-config-hardware-settings-etm-configuration", + "title": "ETM Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Place GDMA control functions (like start/stop/append/reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Place GDMA ISR handler functions in IRAM to reduce latency caused by cache miss.", + "id": "GDMA_ISR_HANDLER_IN_IRAM", + "name": "GDMA_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place GDMA ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "This will ensure the GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", + "id": "GDMA_OBJ_DRAM_SAFE", + "name": "GDMA_OBJ_DRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "If enabled, GDMA driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "GDMA_ENABLE_DEBUG_LOG", + "name": "GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).\nIf this option is enabled, ALL GDMA channel's ISR handlers should be placed in IRAM, which is a overkill.\nIt's recommend to set the \"isr_cache_safe\" in the \"gdma_channel_alloc_config_t\".\nThen other GDMA channels won't be influenced.", + "id": "GDMA_ISR_IRAM_SAFE", + "name": "GDMA_ISR_IRAM_SAFE", + "range": null, + "title": "GDMA ISR IRAM-Safe (Deprecated. Read Help!)", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-gdma-configurations", + "title": "GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", + "id": "DW_GDMA_ISR_IRAM_SAFE", + "name": "DW_GDMA_ISR_IRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", + "id": "DW_GDMA_OBJ_DRAM_SAFE", + "name": "DW_GDMA_OBJ_DRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", + "id": "DW_GDMA_ENABLE_DEBUG_LOG", + "name": "DW_GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "id": "component-config-hardware-settings-dw_gdma-configurations", + "title": "DW_GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", + "id": "DMA2D_OPERATION_FUNC_IN_IRAM", + "name": "DMA2D_OPERATION_FUNC_IN_IRAM", + "range": null, + "title": "Place 2D-DMA operation functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "This will ensure the 2D-DMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", + "id": "DMA2D_ISR_IRAM_SAFE", + "name": "DMA2D_ISR_IRAM_SAFE", + "range": null, + "title": "2D-DMA ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_DMA2D_SUPPORTED", + "id": "component-config-hardware-settings-2d-dma-configurations", + "title": "2D-DMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", + "name": "XTAL_FREQ", + "title": "Main XTAL frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "XTAL_FREQ", + "name": "XTAL_FREQ", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-main-xtal-config", + "title": "Main XTAL Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.44V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_6", + "name": "ESP_BROWNOUT_DET_LVL_SEL_6", + "range": null, + "title": "2.56V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_5", + "name": "ESP_BROWNOUT_DET_LVL_SEL_5", + "range": null, + "title": "2.67V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_4", + "name": "ESP_BROWNOUT_DET_LVL_SEL_4", + "range": null, + "title": "2.84V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_3", + "name": "ESP_BROWNOUT_DET_LVL_SEL_3", + "range": null, + "title": "2.98V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "3.19V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "3.30V", + "type": "bool" + } + ], + "depends_on": "ESP_BROWNOUT_DET", + "help": "The brownout detector will reset the chip when the supply voltage is approximately\nbelow this level. Note that there may be some variation of brownout voltage level\nbetween each ESP3-S3 chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", + "id": "component-config-hardware-settings-power-supplier-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level", + "name": "ESP_BROWNOUT_DET_LVL_SEL", + "title": "Brownout voltage level", + "type": "choice" + } + ], + "depends_on": "!IDF_ENV_FPGA", + "help": "The ESP32-S3 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", + "id": "ESP_BROWNOUT_DET", + "name": "ESP_BROWNOUT_DET", + "range": null, + "title": "Hardware brownout detect & reset", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_BROWNOUT_DET_LVL", + "name": "ESP_BROWNOUT_DET_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This config allows to trigger an interrupt when brownout detected. Software restart will be done\nat the end of the default callback.\nThis is because for some special workflow, the chip needs do more things when brownout happens\nbefore restart instead of restarting directly. This part needs to be done in callback function\nof interrupt.", + "id": "ESP_BROWNOUT_USE_INTR", + "name": "ESP_BROWNOUT_USE_INTR", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier-brownout-detector", + "title": "Brownout Detector", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier", + "title": "Power Supplier", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", + "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", + "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", + "id": "ESP_CLK_RC32K_NOT_TO_USE", + "name": "ESP_CLK_RC32K_NOT_TO_USE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PMU_PVT_SUPPORTED", + "help": "If enabled, hp & lp voltage can be auto adjust by PVT characteristic.\nOtherwise, internal voltage will be set to fix dbias.\nThis is a must for stable mass production. Disable for debugging only.", + "id": "ESP_ENABLE_PVT", + "name": "ESP_ENABLE_PVT", + "range": null, + "title": "Auto adjust hp & lp voltage using pvt function (MUST ENABLE FOR MP)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_INTR_IN_IRAM", + "name": "ESP_INTR_IN_IRAM", + "range": null, + "title": "Place esp_intr_alloc functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "help": "Max len in bytes per C2M chunk, operations with size over the max len will be\nsliced into multiple chunks.", + "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", + "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", + "range": null, + "title": "Max len in bytes per C2M chunk", + "type": "hex" + } + ], + "depends_on": "SOC_CACHE_WRITEBACK_SUPPORTED", + "help": "`esp_cache_msync` C2M direction takes critical sections, which means during\nthe operation, the interrupts are disabled. Whereas Cache writebacks for\nlarge buffers could be especially time intensive, and might cause interrupts\nto be disabled for a significant amount of time.\n\nSometimes you want other ISRs to be responded during this C2M process.\nThis option is to slice one C2M operation into multiple chunks,\nwith CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN max len. This will give you\na breath during the C2M process as sometimes the C2M process is quite long.\n\nNote if the buffer processed by the `esp_cache_msync` (C2M sliced) is interrupted by an ISR,\nand this ISR also accesses this buffer, this may lead to data coherence issue.", + "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "range": null, + "title": "Enable esp_cache_msync C2M chunked operation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-mm-memory-management-configurations", + "title": "ESP-MM: Memory Management Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_LINUX", + "help": "This option enables gathering host test statistics and SPI flash wear levelling simulation.", + "id": "ESP_PARTITION_ENABLE_STATS", + "name": "ESP_PARTITION_ENABLE_STATS", + "range": null, + "title": "Host test statistics enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX", + "help": "This option controls whether the partition implementation checks\nif the flash is erased before writing to it.\nThis is necessary for SPIFFS, which expects to be able to write without erasing first.", + "id": "ESP_PARTITION_ERASE_CHECK", + "name": "ESP_PARTITION_ERASE_CHECK", + "range": null, + "title": "Check if flash is erased before writing", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-partition-api-configuration", + "title": "Partition API Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "PM_SLEEP_FUNC_IN_IRAM", + "name": "PM_SLEEP_FUNC_IN_IRAM", + "range": null, + "title": "Place Power Management module functions in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, startup code configures dynamic frequency scaling.\nMax CPU frequency is set to DEFAULT_CPU_FREQ_MHZ setting,\nmin frequency is set to XTAL frequency.\nIf disabled, DFS will not be active until the application\nconfigures it using esp_pm_configure function.", + "id": "PM_DFS_INIT_AUTO", + "name": "PM_DFS_INIT_AUTO", + "range": null, + "title": "Enable dynamic frequency scaling (DFS) at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, esp_pm_* functions will keep track of the amount of time\neach of the power management locks has been held, and esp_pm_dump_locks\nfunction will print this information.\nThis feature can be used to analyze which locks are preventing the chip\nfrom going into a lower power state, and see what time the chip spends\nin each power saving mode. This feature does incur some run-time\noverhead, so should typically be disabled in production builds.", + "id": "PM_PROFILING", + "name": "PM_PROFILING", + "range": null, + "title": "Enable profiling counters for PM locks", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, some GPIOs will be used to signal events such as RTOS ticks,\nfrequency switching, entry/exit from idle state. Refer to pm_trace.c\nfile for the list of GPIOs.\nThis feature is intended to be used when analyzing/debugging behavior\nof power management implementation, and should be kept disabled in\napplications.", + "id": "PM_TRACE", + "name": "PM_TRACE", + "range": null, + "title": "Enable debug tracing of PM using GPIOs", + "type": "bool" + } + ], + "depends_on": "(!FREERTOS_SMP && SOC_PM_SUPPORTED) || __DOXYGEN__", + "help": "If enabled, application is compiled with support for power management.\nThis option has run-time overhead (increased interrupt latency,\nlonger time to enter idle state), and it also reduces accuracy of\nRTOS ticks and timers used for timekeeping.\nEnable this option if application uses power management APIs.", + "id": "PM_ENABLE", + "name": "PM_ENABLE", + "range": null, + "title": "Support for power management", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LIGHT_SLEEP_SUPPORTED", + "help": "If enabled, about 2.1KB of lightsleep related source code would be in IRAM and chip would sleep\nlonger for 310us at 160MHz CPU frequency most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", + "id": "PM_SLP_IRAM_OPT", + "name": "PM_SLP_IRAM_OPT", + "range": null, + "title": "Put lightsleep related codes in internal RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, about 180Bytes of RTOS_IDLE related source code would be in IRAM and chip would sleep\nlonger for 20us at 160MHz CPU frequency most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", + "id": "PM_RTOS_IDLE_OPT", + "name": "PM_RTOS_IDLE_OPT", + "range": null, + "title": "Put RTOS IDLE related codes in internal RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "This feature is intended to disable all GPIO pins at automantic sleep to get a lower power mode.\nIf enabled, chips will disable all GPIO pins at automantic sleep to reduce about 200~300 uA current.\nIf you want to specifically use some pins normally as chip wakes when chip sleeps,\nyou can call 'gpio_sleep_sel_dis' to disable this feature on those pins.\nYou can also keep this feature on and call 'gpio_sleep_set_direction' and 'gpio_sleep_set_pull_mode'\nto have a different GPIO configuration at sleep.\nWarning: If you want to enable this option on ESP32, you should enable `GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL`\nat first, otherwise you will not be able to switch pullup/pulldown mode.", + "id": "PM_SLP_DISABLE_GPIO", + "name": "PM_SLP_DISABLE_GPIO", + "range": null, + "title": "Disable all GPIO when chip at sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PM_SLP_DEFAULT_PARAMS_OPT", + "name": "PM_SLP_DEFAULT_PARAMS_OPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP || (SOC_CPU_IN_TOP_DOMAIN && PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP)", + "help": "This option is invisible to users, and it is only used for ci testing,\nenabling it in the application will increase the sleep and wake-up time overhead", + "id": "PM_CHECK_SLEEP_RETENTION_FRAME", + "name": "PM_CHECK_SLEEP_RETENTION_FRAME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "The value of this option determines the calibration interval of the RTC_FAST/SLOW clock during sleep when\npower management is enabled. When it is configured as N, the RTC_FAST/SLOW clock will be calibrated\nevery N times of lightsleep.\nDecreasing this value will increase the time the chip is in the active state, thereby increasing the\naverage power consumption of the chip.\nIncreasing this value can reduce the average power consumption, but when the external environment changes\ndrastically and the chip RTC_FAST/SLOW oscillator frequency drifts, it may cause system instability.", + "id": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", + "name": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", + "range": null, + "title": "Calibrate the RTC_FAST/SLOW clock every N times of light sleep", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S3 && PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "help": "Cache tag memory and CPU both belong to the CPU power domain.\nESP chips supports saving and restoring Cache tag memory before and after sleep,\nthis feature supports accesses to the external memory that was cached before sleep still\nbe cached when the CPU wakes up from a powerdowned CPU lightsleep.\nThis option controls the restore method for Cache tag memory in lightsleep.\nIf this option is enabled, the I/D-cache tag memory will be backuped to the internal RAM\nbefore sleep and restored upon wakeup.\nDepending on the the cache configuration, if this option is enabled,\nit will consume up to 9 KB of internal RAM.\nIf this option is disabled, all cached data won't be kept after sleep,\nthe DCache will be writeback before sleep and invalid all cached data after sleep,\nall accesses to external memory(Flash/PSRAM) will be cache missed after waking up,\nresulting in performance degradation due to increased memory accesses latency.", + "id": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", + "name": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", + "range": null, + "title": "Restore I/D-cache tag memory after power down CPU light sleep", + "type": "bool" + } + ], + "depends_on": "SOC_PM_SUPPORT_CPU_PD", + "help": "If enabled, the CPU will be powered down in light sleep,\nESP chips supports saving and restoring CPU's running context before and after light sleep,\nthe feature provides applications with seamless CPU powerdowned lightsleep without user awareness.\nBut this will takes up some internal memory.\nOn esp32c3 soc, enabling this option will consume 1.68 KB of internal RAM\nand will reduce sleep current consumption by about 100 uA.\nOn esp32s3 soc, enabling this option will consume 8.58 KB of internal RAM\nand will reduce sleep current consumption by about 650 uA.", + "id": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "name": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "range": null, + "title": "Power down CPU in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PM_SUPPORT_TOP_PD && SOC_PAU_SUPPORTED", + "help": "If enabled, digital peripherals will try to powered down in light sleep, then all related peripherals will\nnot be available during sleep, including wake-up sources from the peripherals (For detailed availability\ninformation, see the note of the corresponding wakeup source enable function).\nThe chip will automatically save/restore register context during sleep/wakeup to make the upper layer\nuser unaware of the peripheral powerdown during sleep. Enabling this option will increase static RAM and\nheap usage but will also significantly reduce power.\nconsumption during lightsleep, the actual memory cost depends on the peripherals you have initialized,\nfor specific power consumption data in this mode, please refer to Electrical Characteristics section\nin the chip datasheet.\n(In order to save/restore the context of the necessary hardware for FreeRTOS to run, it will need\nat least 4.55 KB free heap at sleep time. Otherwise sleep will not power down the peripherals.)\n\nNote1: Please use this option with caution, the current IDF does not support the retention of\nall peripherals. When the digital peripherals are powered off and a sleep and wake-up is completed,\nthe peripherals that have not saved the running context are equivalent to performing a reset.\n!!! Please confirm the peripherals used in your application and their sleep retention support status\nbefore enabling this option, peripherals sleep retention driver support status is tracked in\npower_management.rst\n\nNote2: When this option is enabled simultaneously with FREERTOS_USE_TICKLESS_IDLE, since the UART will\nbe powered down, the uart FIFO will be flushed before sleep to avoid data loss, however, this has the\npotential to block the sleep process and cause the wakeup time to be skipped, which will cause the tick\nof freertos to not be compensated correctly when returning from sleep and cause the system to crash.\nTo avoid this, you can increase FREERTOS_IDLE_TIME_BEFORE_SLEEP threshold in menuconfig.\n\nNote3: Enabling this option does not necessarily mean that the peripheral power domain will be\nturned down during sleep. The control priority of `esp_sleep_pd_config` is higher than this option,\nuser code can still prevent the peripheral power domain from powering down during sleep by\n`esp_sleep_pd_config(ESP_PD_DOMAIN_TOP, ESP_PD_OPTION_ON)`. In addition, whether the peripheral power\ndomain is powered down during sleep also depends on the sleep working strategy selected by the driver.\nIf any module belonging to the peripheral power domain chooses not to be powered down during sleep,\nthen the peripheral power domain will not be powered off either.", + "id": "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", + "name": "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", + "range": null, + "title": "Power down Digital Peripheral in light sleep (EXPERIMENTAL)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", + "name": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, it allows user to register entry and exit callbacks which are called before and after\nentering auto light sleep.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in callback and\nhence it is highly recommended to keep them as short as possible", + "id": "PM_LIGHT_SLEEP_CALLBACKS", + "name": "PM_LIGHT_SLEEP_CALLBACKS", + "range": null, + "title": "Enable registration of pm light sleep callbacks", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-power-management", + "title": "Power Management", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", + "help": "Place ISR ringbuf functions (like xRingbufferSendFromISR/xRingbufferReceiveFromISR) into flash.\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled\nor from an IRAM interrupt context.\n\nThis option is not compatible with ESP-IDF drivers which are configured to\nrun the ISR from an IRAM context, e.g. CONFIG_UART_ISR_IN_IRAM.", + "id": "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "name": "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place ISR ringbuf functions into flash", + "type": "bool" + } + ], + "depends_on": null, + "help": "Place non-ISR ringbuf functions (like xRingbufferCreate/xRingbufferSend) into flash.\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled.", + "id": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", + "name": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place non-ISR ringbuf functions into flash", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-ringbuf", + "title": "ESP Ringbuf", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_PRINT_IN_IRAM", + "name": "ESP_ROM_PRINT_IN_IRAM", + "range": null, + "title": "Place print functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-rom", + "title": "ESP-ROM", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "range": null, + "title": "Security level low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "range": null, + "title": "Security level medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "range": null, + "title": "Security level high", + "type": "bool" + } + ], + "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "Configure the DPA protection security level", + "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "title": "DPA protection level", + "type": "choice" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\nclock frequency of the crypto peripheral. DPA protection helps to make it\ndifficult to perform SCA attacks on the crypto peripherals. However,\nthere is also associated performance impact based on the security level\nset. Please refer to the TRM for more details.", + "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "range": null, + "title": "Enable crypto DPA protection at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "id": "component-config-esp-security-specific-crypto-dpa-protection", + "title": "Crypto DPA Protection", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", + "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.", + "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "range": null, + "title": "Forcefully enable ECC constant time point multiplication operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", + "help": "By default, only the 256-bit curve operations are allowed. If this configuration is enabled,\nit will set the eFuse to allow ECDSA operations using both the 192-bit and 256-bit curves.", + "id": "ESP_ECDSA_ENABLE_P192_CURVE", + "name": "ESP_ECDSA_ENABLE_P192_CURVE", + "range": null, + "title": "Enable ECDSA 192-curve operations", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-security-specific", + "title": "ESP Security Specific", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_ENV_FPGA && ", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_160", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_160", + "range": null, + "title": "160 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_240", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_240", + "range": null, + "title": "240 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "CPU frequency to be set on application startup.", + "id": "component-config-esp-system-settings-cpu-frequency", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ", + "title": "CPU frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_16KB", + "name": "ESP32S3_INSTRUCTION_CACHE_16KB", + "range": null, + "title": "16KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_32KB", + "name": "ESP32S3_INSTRUCTION_CACHE_32KB", + "range": null, + "title": "32KB", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache size to be set on application startup.\nIf you use 16KB instruction cache rather than 32KB instruction cache,\nthen the other 16KB will be managed by heap allocator.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-size", + "name": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "title": "Instruction cache size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "name": "ESP32S3_INSTRUCTION_CACHE_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_4WAYS", + "name": "ESP32S3_INSTRUCTION_CACHE_4WAYS", + "range": null, + "title": "4 ways", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_8WAYS", + "name": "ESP32S3_INSTRUCTION_CACHE_8WAYS", + "range": null, + "title": "8 ways", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache associated ways to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-associated-ways", + "name": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "title": "Instruction cache associated ways", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "name": "ESP32S3_ICACHE_ASSOCIATED_WAYS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_INSTRUCTION_CACHE_16KB && ", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_16B", + "range": null, + "title": "16 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_32B", + "range": null, + "title": "32 Bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "Instruction cache line size to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-instruction-cache-line-size", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "title": "Instruction cache line size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "name": "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!SPIRAM_ECC_ENABLE", + "help": "If enabled, instruction cache will use wrap mode to read spi flash or spi ram.\nThe wrap length equals to ESP32S3_INSTRUCTION_CACHE_LINE_SIZE.\nHowever, it depends on complex conditions.", + "id": "ESP32S3_INSTRUCTION_CACHE_WRAP", + "name": "ESP32S3_INSTRUCTION_CACHE_WRAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_16KB", + "name": "ESP32S3_DATA_CACHE_16KB", + "range": null, + "title": "16KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_32KB", + "name": "ESP32S3_DATA_CACHE_32KB", + "range": null, + "title": "32KB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_64KB", + "name": "ESP32S3_DATA_CACHE_64KB", + "range": null, + "title": "64KB", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache size to be set on application startup.\nIf you use 32KB data cache rather than 64KB data cache,\nthe other 32KB will be added to the heap.", + "id": "component-config-esp-system-settings-cache-config-data-cache-size", + "name": "ESP32S3_DATA_CACHE_SIZE", + "title": "Data cache size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DATA_CACHE_SIZE", + "name": "ESP32S3_DATA_CACHE_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_4WAYS", + "name": "ESP32S3_DATA_CACHE_4WAYS", + "range": null, + "title": "4 ways", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_8WAYS", + "name": "ESP32S3_DATA_CACHE_8WAYS", + "range": null, + "title": "8 ways", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache associated ways to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-data-cache-associated-ways", + "name": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "title": "Data cache associated ways", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "name": "ESP32S3_DCACHE_ASSOCIATED_WAYS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "(ESP32S3_DATA_CACHE_16KB || ESP32S3_DATA_CACHE_32KB) && ", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_16B", + "name": "ESP32S3_DATA_CACHE_LINE_16B", + "range": null, + "title": "16 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_32B", + "name": "ESP32S3_DATA_CACHE_LINE_32B", + "range": null, + "title": "32 Bytes", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_64B", + "name": "ESP32S3_DATA_CACHE_LINE_64B", + "range": null, + "title": "64 Bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "Data cache line size to be set on application startup.", + "id": "component-config-esp-system-settings-cache-config-data-cache-line-size", + "name": "ESP32S3_DATA_CACHE_LINE_SIZE", + "title": "Data cache line size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_DATA_CACHE_LINE_SIZE", + "name": "ESP32S3_DATA_CACHE_LINE_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!SPIRAM_ECC_ENABLE", + "help": "If enabled, data cache will use wrap mode to read spi flash or spi ram.\nThe wrap length equals to ESP32S3_DATA_CACHE_LINE_SIZE.\nHowever, it depends on complex conditions.", + "id": "ESP32S3_DATA_CACHE_WRAP", + "name": "ESP32S3_DATA_CACHE_WRAP", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-cache-config", + "title": "Cache config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This option allows to place .rtc_data and .rtc_rodata sections into\nRTC fast memory segment to free the slow memory region for ULP programs.", + "id": "ESP32S3_RTCDATA_IN_FAST_MEM", + "name": "ESP32S3_RTCDATA_IN_FAST_MEM", + "range": null, + "title": "Place RTC_DATA_ATTR and RTC_RODATA_ATTR variables into RTC fast memory segment", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nThis value is less than the chips total memory, as not all of it can be used for this purpose.\nE.g. parts are used by the software bootloader, and will only be available\nas heap memory after app startup.", + "id": "ESP32S3_FIXED_STATIC_RAM_SIZE", + "name": "ESP32S3_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Fixed Static RAM size", + "type": "hex" + } + ], + "depends_on": null, + "help": "If this option is disabled, the DRAM part of the heap starts right after the .bss section,\nwithin the dram0_0 region. As a result, adding or removing some static variables\nwill change the available heap size.\n\nIf this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,\nwhere its length is set with ESP32S3_FIXED_STATIC_RAM_SIZE", + "id": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32S3_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory", + "title": "Memory", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_MEMMAP_TRACEMEM", + "name": "ESP32S3_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32S3_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32S3_TRAX && !ESP_SYSTEM_SINGLE_CORE_MODE", + "help": "The esp32-s3 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32S3_TRAX_TWOBANKS", + "name": "ESP32S3_TRAX_TWOBANKS", + "range": null, + "title": "Reserve memory for tracing both pro as well as app cpu execution", + "type": "bool" + } + ], + "depends_on": null, + "help": "The esp32-s3 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32S3_TRAX", + "name": "ESP32S3_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32S3_TRACEMEM_RESERVE_DRAM", + "name": "ESP32S3_TRACEMEM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-trace-memory", + "title": "Trace memory", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "The following system functions will be placed in IRAM if this option is enabled:\n- system startup\n- system time\n- system error\n- system restart\n- system crosscore\n- system debug\n- system APB backup DMA lock\n- system application tick hook\n- Unified Behavior Sanitizer (UBSAN) hook\n- Interrupt watchdog handler\n- XTAL32K watchdog timer\n- USB CDC functions for the esp_rom_printf (if ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF=y)\n- IPC and IPC ISR", + "id": "ESP_SYSTEM_IN_IRAM", + "name": "ESP_SYSTEM_IN_IRAM", + "range": null, + "title": "Place system functions in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", + "id": "ESP_SYSTEM_PANIC_PRINT_HALT", + "name": "ESP_SYSTEM_PANIC_PRINT_HALT", + "range": null, + "title": "Print registers and halt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", + "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "range": null, + "title": "Print registers and reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Just resets the processor without outputting anything", + "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "range": null, + "title": "Silent reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_GDBSTUB_ENABLED && ", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", + "id": "ESP_SYSTEM_PANIC_GDBSTUB", + "name": "ESP_SYSTEM_PANIC_GDBSTUB", + "range": null, + "title": "GDBStub on panic", + "type": "bool" + } + ], + "depends_on": null, + "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", + "id": "component-config-esp-system-settings-panic-handler-behaviour", + "name": "ESP_SYSTEM_PANIC", + "title": "Panic handler behaviour", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", + "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "range": [ + 0, + 99 + ], + "title": "Panic reboot delay (Seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Only initialize and use the main core.", + "id": "ESP_SYSTEM_SINGLE_CORE_MODE", + "name": "ESP_SYSTEM_SINGLE_CORE_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_XTAL", + "name": "ESP_SYSTEM_RTC_EXT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_OSC", + "name": "ESP_SYSTEM_RTC_EXT_OSC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", + "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", + "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "range": null, + "title": "Bootstrap cycles for external 32kHz crystal", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": null, + "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "help": "This config option allows to add RTC fast memory region to system heap with capability\nsimilar to that of DRAM region but without DMA. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", + "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "range": null, + "title": "Enable RTC fast memory for dynamic allocations", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "When selected, no backtracing will be performed at runtime. By using idf.py monitor, it\nis still possible to get a backtrace when a panic occurs.", + "id": "ESP_SYSTEM_NO_BACKTRACE", + "name": "ESP_SYSTEM_NO_BACKTRACE", + "range": null, + "title": "No backtracing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Generate DWARF information for each function of the project. These information will parsed and used to\nperform backtracing when panics occur. Activating this option will activate asynchronous frame\nunwinding and generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary\nsize (20% to 100% larger). The main purpose of this option is to be able to have a backtrace parsed\nand printed by the program itself, regardless of the serial monitor used.\nThis option is not recommended to be used for production.", + "id": "ESP_SYSTEM_USE_EH_FRAME", + "name": "ESP_SYSTEM_USE_EH_FRAME", + "range": null, + "title": "Generate and use eh_frame for backtracing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This configuration allows the compiler to allocate CPU register s0 as the frame pointer. The main usage\nof the frame pointer is to be able to generate a backtrace from the panic handler on exception.\nEnabling this option results in bigger and slightly slower code since all functions will have\nto populate this register and won't be able to use it as a general-purpose register anymore.", + "id": "ESP_SYSTEM_USE_FRAME_POINTER", + "name": "ESP_SYSTEM_USE_FRAME_POINTER", + "range": null, + "title": "Use CPU Frame Pointer register", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Configure how backtracing will be performed at runtime when a panic occurs.", + "id": "component-config-esp-system-settings-backtracing-method", + "name": "ESP_BACKTRACING_METHOD", + "title": "Backtracing method", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", + "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", + "id": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", + "range": null, + "title": "Make LP core reserved memory executable from HP core", + "type": "bool" + } + ], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP && !SECURE_ENABLE_TEE", + "help": "If enabled, the CPU watches all the memory access and raises an exception in case\nof any memory violation. This feature automatically splits\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", + "id": "ESP_SYSTEM_PMP_IDRAM_SPLIT", + "name": "ESP_SYSTEM_PMP_IDRAM_SPLIT", + "range": null, + "title": "Enable IRAM/DRAM split protection", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE", + "help": "This option enables the default memory protection provided by TEE.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", + "name": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", + "range": null, + "title": "Enable memory protection (via TEE)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_SYSTEM_MEMPROT_FEATURE", + "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", + "name": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", + "range": null, + "title": "Lock memory protection settings", + "type": "bool" + } + ], + "depends_on": "SOC_MEMPROT_SUPPORTED", + "help": "If enabled, the permission control module watches all the memory access and fires the panic handler\nif a permission violation is detected. This feature automatically splits\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", + "id": "ESP_SYSTEM_MEMPROT_FEATURE", + "name": "ESP_SYSTEM_MEMPROT_FEATURE", + "range": null, + "title": "Enable memory protection", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-protection", + "title": "Memory protection", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event queue size in different application.", + "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "range": null, + "title": "System event queue size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event task stack size in different application.", + "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "range": null, + "title": "Event loop task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the \"main task\" stack size. This is the stack of the task\nwhich calls app_main(). If app_main() returns then this task is deleted\nand its stack memory is freed.", + "id": "ESP_MAIN_TASK_STACK_SIZE", + "name": "ESP_MAIN_TASK_STACK_SIZE", + "range": null, + "title": "Main task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_CPU0", + "name": "ESP_MAIN_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_CPU1", + "name": "ESP_MAIN_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", + "name": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure the \"main task\" core affinity. This is the used core of the task\nwhich calls app_main(). If app_main() returns then this task is deleted.", + "id": "component-config-esp-system-settings-main-task-core-affinity", + "name": "ESP_MAIN_TASK_AFFINITY", + "title": "Main task core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY", + "name": "ESP_MAIN_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", + "id": "ESP_MINIMAL_SHARED_STACK_SIZE", + "name": "ESP_MINIMAL_SHARED_STACK_SIZE", + "range": null, + "title": "Minimal allowed size for shared stack", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_DEFAULT", + "name": "ESP_CONSOLE_UART_DEFAULT", + "range": null, + "title": "Default: UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && ", + "help": null, + "id": "ESP_CONSOLE_USB_CDC", + "name": "ESP_CONSOLE_USB_CDC", + "range": null, + "title": "USB CDC", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED && ", + "help": null, + "id": "ESP_CONSOLE_USB_SERIAL_JTAG", + "name": "ESP_CONSOLE_USB_SERIAL_JTAG", + "range": null, + "title": "USB Serial/JTAG Controller", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM", + "name": "ESP_CONSOLE_UART_CUSTOM", + "range": null, + "title": "Custom UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_NONE", + "name": "ESP_CONSOLE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select where to send console output (through stdout and stderr).\n\n- Default is to use UART0 on pre-defined GPIOs.\n- If \"Custom\" is selected, UART0 or UART1 can be chosen,\n and any pins can be selected.\n- If \"None\" is selected, there will be no console output on any UART, except\n for initial output from ROM bootloader. This ROM output can be suppressed by\n GPIO strapping or EFUSE, refer to chip datasheet for details.\n- On chips with USB OTG peripheral, \"USB CDC\" option redirects output to the\n CDC port. This option uses the CDC driver in the chip ROM.\n This option is incompatible with TinyUSB stack.\n- On chips with an USB serial/JTAG debug controller, selecting the option\n for that redirects output to the CDC/ACM (serial port emulation) component\n of that device.", + "id": "component-config-esp-system-settings-channel-for-console-output", + "name": "ESP_CONSOLE_UART", + "title": "Channel for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_SECONDARY_NONE", + "name": "ESP_CONSOLE_SECONDARY_NONE", + "range": null, + "title": "No secondary console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_CONSOLE_USB_SERIAL_JTAG && ", + "help": "This option supports output through USB_SERIAL_JTAG port when the UART0 port is not connected.\nThe output currently only supports non-blocking mode without using the console.\nIf you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,\nplease change the primary config to ESP_CONSOLE_USB_SERIAL_JTAG above.", + "id": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "name": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "range": null, + "title": "USB_SERIAL_JTAG PORT", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "help": "This secondary option supports output through other specific port like USB_SERIAL_JTAG\nwhen UART0 port as a primary is selected but not connected. This secondary output currently only supports\nnon-blocking mode without using REPL. If you want to output in blocking mode with REPL or\ninput through this secondary port, please change the primary config to this port\nin `Channel for console output` menu.", + "id": "component-config-esp-system-settings-channel-for-console-secondary-output", + "name": "ESP_CONSOLE_SECONDARY", + "title": "Channel for console secondary output", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", + "name": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART", + "name": "ESP_CONSOLE_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "range": null, + "title": "UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "range": null, + "title": "UART1", + "type": "bool" + } + ], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This UART peripheral is used for console output from the ESP-IDF Bootloader and the app.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.\n\nDue to an ESP32 ROM bug, UART2 is not supported for console output\nvia esp_rom_printf.", + "id": "component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-", + "name": "ESP_CONSOLE_UART_NUM", + "title": "UART peripheral to use for console output (0-1)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART_NUM", + "name": "ESP_CONSOLE_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\nboot log output and default standard output and standard error of the app). Value -1 means to\ncontinue using the default console UART TX pin.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_TX_GPIO", + "name": "ESP_CONSOLE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_RX_GPIO", + "name": "ESP_CONSOLE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART", + "help": "This baud rate is used by both the ESP-IDF Bootloader and the app (including\nboot log output and default standard input/output/error of the app).\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", + "id": "ESP_CONSOLE_UART_BAUDRATE", + "name": "ESP_CONSOLE_UART_BAUDRATE", + "range": [ + 1200, + 4000000 + ], + "title": "UART console baud rate", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", + "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "range": null, + "title": "Size of USB CDC RX buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\nDisabling this option saves about 1kB or RAM.", + "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "range": null, + "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_INT_WDT", + "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", + "id": "ESP_INT_WDT_TIMEOUT_MS", + "name": "ESP_INT_WDT_TIMEOUT_MS", + "range": [ + 10, + 10000 + ], + "title": "Interrupt watchdog timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", + "help": "Also detect if interrupts on CPU 1 are disabled for too long.", + "id": "ESP_INT_WDT_CHECK_CPU1", + "name": "ESP_INT_WDT_CHECK_CPU1", + "range": null, + "title": "Also watch CPU1 tick interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", + "id": "ESP_INT_WDT", + "name": "ESP_INT_WDT", + "range": null, + "title": "Interrupt watchdog", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_EN", + "help": null, + "id": "ESP_TASK_WDT_USE_ESP_TIMER", + "name": "ESP_TASK_WDT_USE_ESP_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_PANIC", + "name": "ESP_TASK_WDT_PANIC", + "range": null, + "title": "Invoke panic handler on Task Watchdog timeout", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_TIMEOUT_S", + "name": "ESP_TASK_WDT_TIMEOUT_S", + "range": [ + 1, + 60 + ], + "title": "Task Watchdog timeout period (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "range": null, + "title": "Watch CPU0 Idle Task", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", + "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "range": null, + "title": "Watch CPU1 Idle Task", + "type": "bool" + } + ], + "depends_on": "ESP_TASK_WDT_EN", + "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", + "id": "ESP_TASK_WDT_INIT", + "name": "ESP_TASK_WDT_INIT", + "range": null, + "title": "Initialize Task Watchdog Timer on startup", + "type": "bool" + } + ], + "depends_on": null, + "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\neither initialized automatically at startup or initialized after startup\n(see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_EN", + "name": "ESP_TASK_WDT_EN", + "range": null, + "title": "Enable Task Watchdog Timer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", + "id": "ESP_XT_WDT_TIMEOUT", + "name": "ESP_XT_WDT_TIMEOUT", + "range": null, + "title": "XTAL32K watchdog timeout period", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", + "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "range": null, + "title": "Automatically switch to BACKUP32K_CLK when timer expires", + "type": "bool" + } + ], + "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", + "help": "This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\nan interrupt.", + "id": "ESP_XT_WDT", + "name": "ESP_XT_WDT", + "range": null, + "title": "Initialize XTAL32K watchdog timer on startup", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code (including required UART functions) is placed\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\nis triggered.", + "id": "ESP_PANIC_HANDLER_IRAM", + "name": "ESP_PANIC_HANDLER_IRAM", + "range": null, + "title": "Place panic handler code in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", + "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", + "id": "ESP_DEBUG_STUBS_ENABLE", + "name": "ESP_DEBUG_STUBS_ENABLE", + "range": null, + "title": "OpenOCD debug stubs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", + "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "range": null, + "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The FreeRTOS panic and unhandled exception handlers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", + "id": "ESP_DEBUG_OCDAWARE", + "name": "ESP_DEBUG_OCDAWARE", + "range": null, + "title": "Make exception and panic handlers JTAG/OCD aware", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ", + "help": "Using level 5 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "ESP_SYSTEM_CHECK_INT_LEVEL_5", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL_5", + "range": null, + "title": "Level 5 interrupt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BTDM_CTRL_HLI && ", + "help": "Using level 4 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "ESP_SYSTEM_CHECK_INT_LEVEL_4", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL_4", + "range": null, + "title": "Level 4 interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "Interrupt level to use for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL", + "title": "Interrupt level to use for Interrupt Watchdog and other system checks", + "type": "choice" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED && !SECURE_ENABLE_TEE", + "help": "This config allows to trigger a panic interrupt when Stack Pointer register goes out of allocated stack\nmemory bounds.", + "id": "ESP_SYSTEM_HW_STACK_GUARD", + "name": "ESP_SYSTEM_HW_STACK_GUARD", + "range": null, + "title": "Hardware stack guard", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", + "help": "This configuration helps to address an BBPLL inaccurate issue when boot from certain bootloader version,\nwhich may increase about the boot-up time by about 200 us. Disable this when your bootloader is built with\nESP-IDF version v5.2 and above.", + "id": "ESP_SYSTEM_BBPLL_RECALIB", + "name": "ESP_SYSTEM_BBPLL_RECALIB", + "range": null, + "title": "Re-calibration BBPLL at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", + "id": "ESP_SYSTEM_HW_PC_RECORD", + "name": "ESP_SYSTEM_HW_PC_RECORD", + "range": null, + "title": "Hardware PC recording", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP_SYSTEM_SINGLE_CORE_MODE || APPTRACE_GCOV_ENABLE", + "help": null, + "id": "ESP_IPC_ENABLE", + "name": "ESP_IPC_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the IPC tasks stack size. An IPC task runs on each core (in dual core mode), and allows for\ncross-core function calls. See IPC documentation for more details. The default IPC stack size should be\nenough for most common simple use cases. However, users can increase/decrease the stack size to their\nneeds.", + "id": "ESP_IPC_TASK_STACK_SIZE", + "name": "ESP_IPC_TASK_STACK_SIZE", + "range": [ + 512, + 65536 + ], + "title": "Inter-Processor Call (IPC) task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_IPC_ENABLE", + "help": "If this option is not enabled then the IPC task will keep behavior same as prior to that of ESP-IDF v4.0,\nhence IPC task will run at (configMAX_PRIORITIES - 1) priority.", + "id": "ESP_IPC_USES_CALLERS_PRIORITY", + "name": "ESP_IPC_USES_CALLERS_PRIORITY", + "range": null, + "title": "IPC runs at caller's priority", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The IPC ISR feature is similar to the IPC feature except that the callback function is executed in the\ncontext of a High Priority Interrupt. The IPC ISR feature is intended for low latency execution of simple\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\ncallbacks must be written with particular restrictions (see \"IPC\" and \"High-Level Interrupt\" docs for more\ndetails).", + "id": "ESP_IPC_ISR_ENABLE", + "name": "ESP_IPC_ISR_ENABLE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-ipc-inter-processor-call-", + "title": "IPC (Inter-Processor Call)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIMER_IN_IRAM", + "name": "ESP_TIMER_IN_IRAM", + "range": null, + "title": "Place esp_timer functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, esp_timer_dump will dump information such as number of times the timer was started,\nnumber of times the timer has triggered, and the total time it took for the callback to run.\nThis option has some effect on timer performance and the amount of memory used for timer\nstorage, and should only be used for debugging/testing purposes.", + "id": "ESP_TIMER_PROFILING", + "name": "ESP_TIMER_PROFILING", + "range": null, + "title": "Enable esp_timer profiling features", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIME_FUNCS_USE_RTC_TIMER", + "name": "ESP_TIME_FUNCS_USE_RTC_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIME_FUNCS_USE_ESP_TIMER", + "name": "ESP_TIME_FUNCS_USE_ESP_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIME_FUNCS_USE_NONE", + "name": "ESP_TIME_FUNCS_USE_NONE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the stack size of \"timer_task\" task. This task is used\nto dispatch callbacks of timers created using ets_timer and esp_timer\nAPIs. If you are seeing stack overflow errors in timer task, increase\nthis value.\n\nNote that this is not the same as FreeRTOS timer task. To configure\nFreeRTOS timer task size, see \"FreeRTOS timer task stack size\" option\nin \"FreeRTOS\".", + "id": "ESP_TIMER_TASK_STACK_SIZE", + "name": "ESP_TIMER_TASK_STACK_SIZE", + "range": [ + 2048, + 65536 + ], + "title": "High-resolution timer task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the interrupt priority level for esp_timer ISR.\nA higher value reduces interrupt latency by minimizing the timer processing delay.", + "id": "ESP_TIMER_INTERRUPT_LEVEL", + "name": "ESP_TIMER_INTERRUPT_LEVEL", + "range": [ + 1, + 1 + ], + "title": "Interrupt level", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This shows some hidden features of esp_timer.\nNote that they may break other features, use them with care.", + "id": "ESP_TIMER_SHOW_EXPERIMENTAL", + "name": "ESP_TIMER_SHOW_EXPERIMENTAL", + "range": null, + "title": "show esp_timer's experimental features", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY", + "name": "ESP_TIMER_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_CPU0", + "name": "ESP_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_CPU1", + "name": "ESP_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", + "name": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "help": "The default settings: timer TASK on CPU0 and timer ISR on CPU0.\nOther settings may help in certain cases, but note that they may break\nother features, use them with care.\n- \"CPU0\": (default) esp_timer task is processed by CPU0.\n- \"CPU1\": esp_timer task is processed by CPU1.\n- \"No affinity\": esp_timer task can be processed by any CPU.", + "id": "component-config-esp-timer-high-resolution-timer--esp_timer-task-core-affinity", + "name": "ESP_TIMER_TASK_AFFINITY", + "title": "esp_timer task core affinity", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_CPU0", + "name": "ESP_TIMER_ISR_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_CPU1", + "name": "ESP_TIMER_ISR_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", + "name": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "help": "The default settings: timer TASK on CPU0 and timer ISR on CPU0.\nOther settings may help in certain cases, but note that they may break\nother features, use them with care.\n- \"CPU0\": (default) timer interrupt is processed by CPU0.\n- \"CPU1\": timer interrupt is processed by CPU1.\n- \"No affinity\": timer interrupt can be processed by any CPU. It helps\nto reduce latency but there is a disadvantage it leads to the timer ISR\nrunning on every core. It increases the CPU time usage for timer ISRs\nby N on an N-core system.", + "id": "component-config-esp-timer-high-resolution-timer--timer-interrupt-core-affinity", + "name": "ESP_TIMER_ISR_AFFINITY", + "title": "timer interrupt core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Allows using ESP_TIMER_ISR dispatch method (ESP_TIMER_TASK dispatch method is also available).\n- ESP_TIMER_TASK - Timer callbacks are dispatched from a high-priority esp_timer task.\n- ESP_TIMER_ISR - Timer callbacks are dispatched directly from the timer interrupt handler.\nThe ISR dispatch can be used, in some cases, when a callback is very simple\nor need a lower-latency.", + "id": "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD", + "name": "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD", + "range": null, + "title": "Support ISR dispatch method", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": null, + "id": "ESP_TIMER_IMPL_TG0_LAC", + "name": "ESP_TIMER_IMPL_TG0_LAC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32", + "help": null, + "id": "ESP_TIMER_IMPL_SYSTIMER", + "name": "ESP_TIMER_IMPL_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-timer-high-resolution-timer-", + "title": "ESP Timer (High Resolution Timer)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32P4", + "help": "Amazon has released an SMP version of the FreeRTOS Kernel which can be found via the following link:\nhttps://github.com/FreeRTOS/FreeRTOS-Kernel/tree/smp\n\nIDF has added an experimental port of this SMP kernel located in\ncomponents/freertos/FreeRTOS-Kernel-SMP. Enabling this option will cause IDF to use the Amazon SMP\nkernel. Note that THIS FEATURE IS UNDER ACTIVE DEVELOPMENT, users use this at their own risk.\n\nLeaving this option disabled will mean the IDF FreeRTOS kernel is used instead, which is located in:\ncomponents/freertos/FreeRTOS-Kernel. Both kernel versions are SMP capable, but differ in\ntheir implementation and features.", + "id": "FREERTOS_SMP", + "name": "FREERTOS_SMP", + "range": null, + "title": "Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This version of FreeRTOS normally takes control of all cores of the CPU. Select this if you only want\nto start it on the first core. This is needed when e.g. another process needs complete control over the\nsecond core.", + "id": "FREERTOS_UNICORE", + "name": "FREERTOS_UNICORE", + "range": null, + "title": "Run FreeRTOS only on first core", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\ndetails).", + "id": "FREERTOS_HZ", + "name": "FREERTOS_HZ", + "range": [ + 1, + 1000 + ], + "title": "configTICK_RATE_HZ", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE && !FREERTOS_SMP", + "help": "Enables port specific task selection method. This option can speed up the search of ready tasks\nwhen scheduling (see configUSE_PORT_OPTIMISED_TASK_SELECTION documentation for more details).", + "id": "FREERTOS_OPTIMIZED_SCHEDULER", + "name": "FREERTOS_OPTIMIZED_SCHEDULER", + "range": null, + "title": "configUSE_PORT_OPTIMISED_TASK_SELECTION", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "range": null, + "title": "No checking", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Check for stack overflows on each context switch by checking if the stack pointer is in a valid\nrange. Quick but does not detect stack overflows that happened between context switches\n(configCHECK_FOR_STACK_OVERFLOW = 1)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "range": null, + "title": "Check by stack pointer value (Method 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places some magic bytes at the end of the stack area and on each context switch, check if these\nbytes are still intact. More thorough than just checking the pointer, but also slightly slower.\n(configCHECK_FOR_STACK_OVERFLOW = 2)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "range": null, + "title": "Check using canary bytes (Method 2)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables FreeRTOS to check for stack overflows (see configCHECK_FOR_STACK_OVERFLOW documentation for\nmore details).\n\nNote: If users do not provide their own ``vApplicationStackOverflowHook()`` function, a default\nfunction will be provided by ESP-IDF.", + "id": "component-config-freertos-kernel-configcheck_for_stack_overflow", + "name": "FREERTOS_CHECK_STACKOVERFLOW", + "title": "configCHECK_FOR_STACK_OVERFLOW", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of thread local storage pointers in each task (see\nconfigNUM_THREAD_LOCAL_STORAGE_POINTERS documentation for more details).\n\nNote: In ESP-IDF, this value must be at least 1. Index 0 is reserved for use by the pthreads API\nthread-local-storage. Other indexes can be used for any desired purpose.", + "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "range": [ + 1, + 256 + ], + "title": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the idle task stack size in bytes (see configMINIMAL_STACK_SIZE documentation for more details).\n\nNote:\n\n- ESP-IDF specifies stack sizes in bytes instead of words.\n- The default size is enough for most use cases.\n- The stack size may need to be increased above the default if the app installs idle or thread local\n storage cleanup hooks that use a lot of stack memory.\n- Conversely, the stack size can be reduced to the minimum if non of the idle features are used.", + "id": "FREERTOS_IDLE_TASK_STACKSIZE", + "name": "FREERTOS_IDLE_TASK_STACKSIZE", + "range": [ + 768, + 32768 + ], + "title": "configMINIMAL_STACK_SIZE (Idle task stack size)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the idle task application hook (see configUSE_IDLE_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationIdleHook( void );``\n- ``vApplicationIdleHook()`` is called from FreeRTOS idle task(s)\n- The FreeRTOS idle hook is NOT the same as the ESP-IDF Idle Hook, but both can be enabled\n simultaneously.", + "id": "FREERTOS_USE_IDLE_HOOK", + "name": "FREERTOS_USE_IDLE_HOOK", + "range": null, + "title": "configUSE_IDLE_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SMP", + "help": "Enables the minimal idle task application hook (see configUSE_IDLE_HOOK documentation for more\ndetails).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "range": null, + "title": "Use FreeRTOS minimal idle hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationTickHook( void );``\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\n simultaneously.", + "id": "FREERTOS_USE_TICK_HOOK", + "name": "FREERTOS_USE_TICK_HOOK", + "range": null, + "title": "configUSE_TICK_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\nmore details).\n\nNote: For most uses, the default of 16 characters is sufficient.", + "id": "FREERTOS_MAX_TASK_NAME_LEN", + "name": "FREERTOS_MAX_TASK_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "configMAX_TASK_NAME_LEN", + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX", + "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", + "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "range": null, + "title": "configENABLE_BACKWARD_COMPATIBILITY", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", + "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "range": null, + "title": "configTIMER_SERVICE_TASK_NAME", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", + "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", + "type": "choice" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": null, + "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", + "id": "FREERTOS_TIMER_TASK_PRIORITY", + "name": "FREERTOS_TIMER_TASK_PRIORITY", + "range": [ + 1, + 25 + ], + "title": "configTIMER_TASK_PRIORITY", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", + "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "range": [ + 1536, + 32768 + ], + "title": "configTIMER_TASK_STACK_DEPTH", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", + "id": "FREERTOS_TIMER_QUEUE_LENGTH", + "name": "FREERTOS_TIMER_QUEUE_LENGTH", + "range": [ + 5, + 20 + ], + "title": "configTIMER_QUEUE_LENGTH", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", + "id": "FREERTOS_USE_TIMERS", + "name": "FREERTOS_USE_TIMERS", + "range": null, + "title": "configUSE_TIMERS", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\n\nNote: A value of 0 will disable queue registry functionality", + "id": "FREERTOS_QUEUE_REGISTRY_SIZE", + "name": "FREERTOS_QUEUE_REGISTRY_SIZE", + "range": [ + 0, + 20 + ], + "title": "configQUEUE_REGISTRY_SIZE", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the size of the task notification array of each task. When increasing this value, keep in\nmind that this means additional memory for each and every task on the system.\nHowever, task notifications in general are more light weight compared to alternatives\nsuch as semaphores.", + "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "range": [ + 1, + 32 + ], + "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TRACE_FACILITY", + "help": "Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).", + "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "range": null, + "title": "configUSE_STATS_FORMATTING_FUNCTIONS", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", + "id": "FREERTOS_USE_TRACE_FACILITY", + "name": "FREERTOS_USE_TRACE_FACILITY", + "range": null, + "title": "configUSE_TRACE_FACILITY", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", + "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "range": null, + "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "help": "If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\nis pinned to (0,1) or -1 if not pinned.", + "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "range": null, + "title": "Enable display of xCoreID in vTaskList", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "range": null, + "title": "uint32_t", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "range": null, + "title": "uint64_t", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS && !FREERTOS_SMP", + "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", + "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", + "title": "configRUN_TIME_COUNTER_TYPE", + "type": "choice" + } + ], + "depends_on": null, + "help": "Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\ndocumentation for more details).\n\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.", + "id": "FREERTOS_GENERATE_RUN_TIME_STATS", + "name": "FREERTOS_GENERATE_RUN_TIME_STATS", + "range": null, + "title": "configGENERATE_RUN_TIME_STATS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\nthis value to improve scheduling efficiency", + "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "range": null, + "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", + "type": "int" + } + ], + "depends_on": "PM_ENABLE", + "help": "If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\nwhen no tasks need to run for a number of ticks. This number can be set using\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\n\"skip_unhandled_events\" option as true.\n\nIf disabled, automatic light sleep support will be disabled.", + "id": "FREERTOS_USE_TICKLESS_IDLE", + "name": "FREERTOS_USE_TICKLESS_IDLE", + "range": null, + "title": "configUSE_TICKLESS_IDLE", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", + "id": "FREERTOS_USE_APPLICATION_TASK_TAG", + "name": "FREERTOS_USE_APPLICATION_TASK_TAG", + "range": null, + "title": "configUSE_APPLICATION_TASK_TAG", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-kernel", + "title": "Kernel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", + "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\nwrapper function will then log an error and abort the application. This option is also required for GDB\nbacktraces and C++ exceptions to work correctly inside top-level task functions.", + "id": "FREERTOS_TASK_FUNCTION_WRAPPER", + "name": "FREERTOS_TASK_FUNCTION_WRAPPER", + "range": null, + "title": "Wrap task functions", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\nless because the last one is overwritten as soon as a task switch happens.\n\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\nthe size for the stack watchpoint in IDF is 32 bytes.\n\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\ncheck methods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\nesp-idf will panic on an unhandled debug exception.", + "id": "FREERTOS_WATCHPOINT_END_OF_STACK", + "name": "FREERTOS_WATCHPOINT_END_OF_STACK", + "range": null, + "title": "Enable stack overflow debug watchpoint", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", + "help": "ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\noff to save space in the TCB memory.", + "id": "FREERTOS_TLSP_DELETION_CALLBACKS", + "name": "FREERTOS_TLSP_DELETION_CALLBACKS", + "range": null, + "title": "Enable thread local storage pointers deletion callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", + "id": "FREERTOS_TASK_PRE_DELETION_HOOK", + "name": "FREERTOS_TASK_PRE_DELETION_HOOK", + "range": null, + "title": "Enable task pre-deletion hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook (DEPRECATED)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP", + "help": "If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\nwhich is currently holding the mutex.", + "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "range": null, + "title": "Check that mutex semaphore is given by owner task", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\nhas its own stack, so the total size occupied will be twice this.", + "id": "FREERTOS_ISR_STACKSIZE", + "name": "FREERTOS_ISR_STACKSIZE", + "range": [ + 1536, + 32768 + ], + "title": "ISR stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, interrupt stack frame will be modified to point to the code of the\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\nto the interrupt dispatching code.", + "id": "FREERTOS_INTERRUPT_BACKTRACE", + "name": "FREERTOS_INTERRUPT_BACKTRACE", + "range": null, + "title": "Enable backtrace from interrupt to task context", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", + "help": "When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\nhigher level interrupts is still not permitted.", + "id": "FREERTOS_FPU_IN_ISR", + "name": "FREERTOS_FPU_IN_ISR", + "range": null, + "title": "Use float in Level 1 ISR", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_CORETIMER", + "name": "FREERTOS_TICK_SUPPORT_CORETIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 0", + "id": "FREERTOS_CORETIMER_0", + "name": "FREERTOS_CORETIMER_0", + "range": null, + "title": "Timer 0 (int 6, level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 1", + "id": "FREERTOS_CORETIMER_1", + "name": "FREERTOS_CORETIMER_1", + "range": null, + "title": "Timer 1 (int 15, level 3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 1 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "range": null, + "title": "SYSTIMER 0 (level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 3 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "range": null, + "title": "SYSTIMER 0 (level 3)", + "type": "bool" + } + ], + "depends_on": null, + "help": "FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\nthis, with different interrupt priorities.", + "id": "component-config-freertos-port-tick-timer-source-xtensa-only-", + "name": "FREERTOS_CORETIMER", + "title": "Tick timer source (Xtensa Only)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_SYSTIMER", + "name": "FREERTOS_SYSTICK_USES_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_CCOUNT", + "name": "FREERTOS_SYSTICK_USES_CCOUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "range": null, + "title": "Use ESP TIMER for run time stats", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", + "help": "CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "range": null, + "title": "Use CPU Clock for run time stats", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\nsource overflows.", + "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "help": "When enabled additional FreeRTOS functions which maybe called from an ISR context are\nalso placed in Flash, thus freeing up more IRAM.\nThis option is only applicable when the SPI_FLASH_AUTO_SUSPEND feature is supported.", + "id": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions called from ISR context into Flash", + "type": "bool" + } + ], + "depends_on": null, + "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", + "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions into Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure", + "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "range": null, + "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-port", + "title": "Port", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", + "help": "Accessing memory in PSRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\n\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", + "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-extra", + "title": "Extra", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_PORT", + "name": "FREERTOS_PORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NO_AFFINITY", + "name": "FREERTOS_NO_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", + "id": "FREERTOS_DEBUG_OCDAWARE", + "name": "FREERTOS_DEBUG_OCDAWARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_PANIC_HANDLER_IRAM", + "help": null, + "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NUMBER_OF_CORES", + "name": "FREERTOS_NUMBER_OF_CORES", + "range": [ + 1, + 2 + ], + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_IN_IRAM", + "name": "FREERTOS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos", + "title": "FreeRTOS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_ASSERTION_EQUALS_SYSTEM", + "name": "HAL_ASSERTION_EQUALS_SYSTEM", + "range": null, + "title": "Same as system assertion level", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && ", + "help": null, + "id": "HAL_ASSERTION_DISABLE", + "name": "HAL_ASSERTION_DISABLE", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && ", + "help": null, + "id": "HAL_ASSERTION_SILENT", + "name": "HAL_ASSERTION_SILENT", + "range": null, + "title": "Silent", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && ", + "help": null, + "id": "HAL_ASSERTION_ENABLE", + "name": "HAL_ASSERTION_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + } + ], + "depends_on": null, + "help": "Set the assert behavior / level for HAL component.\nHAL component assert level can be set separately,\nbut the level can't exceed the system assertion level.\ne.g. If the system assertion is disabled, then the HAL\nassertion can't be enabled either. If the system assertion\nis enable, then the HAL assertion can still be disabled\nby this Kconfig option.", + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level", + "name": "HAL_DEFAULT_ASSERTION_LEVEL", + "title": "Default HAL assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "HAL_DEFAULT_ASSERTION_LEVEL", + "name": "HAL_DEFAULT_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_NONE", + "name": "HAL_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_ERROR", + "name": "HAL_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_WARN", + "name": "HAL_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_INFO", + "name": "HAL_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_DEBUG", + "name": "HAL_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_VERBOSE", + "name": "HAL_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": "!LOG_DEFAULT_LEVEL_NONE && !LOG_DEFAULT_LEVEL_ERROR && !LOG_DEFAULT_LEVEL_WARN && !LOG_DEFAULT_LEVEL_INFO && !LOG_DEFAULT_LEVEL_DEBUG && !LOG_DEFAULT_LEVEL_VERBOSE", + "help": "Specify how much output to see in HAL logs.", + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity", + "name": "HAL_LOG_LEVEL", + "title": "HAL layer log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "HAL_LOG_LEVEL", + "name": "HAL_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HAL_SYSTIMER", + "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", + "id": "HAL_SYSTIMER_USE_ROM_IMPL", + "name": "HAL_SYSTIMER_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of SysTimer HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HAL_WDT", + "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", + "id": "HAL_WDT_USE_ROM_IMPL", + "name": "HAL_WDT_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of WDT HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32H2", + "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nThis countermeasure is only necessary for ESP32-H2 < v1.2.", + "id": "HAL_ECDSA_GEN_SIG_CM", + "name": "HAL_ECDSA_GEN_SIG_CM", + "range": null, + "title": "Enable countermeasure for ECDSA signature generation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll-", + "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_DISABLED", + "name": "HEAP_POISONING_DISABLED", + "range": null, + "title": "Basic (no poisoning)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_LIGHT", + "name": "HEAP_POISONING_LIGHT", + "range": null, + "title": "Light impact", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_COMPREHENSIVE", + "name": "HEAP_POISONING_COMPREHENSIVE", + "range": null, + "title": "Comprehensive", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable heap poisoning features to detect heap corruption caused by out-of-bounds access to heap memory.\n\nSee the \"Heap Memory Debugging\" page of the IDF documentation\nfor a description of each level of heap corruption detection.", + "id": "component-config-heap-memory-debugging-heap-corruption-detection", + "name": "HEAP_CORRUPTION_DETECTION", + "title": "Heap corruption detection", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_OFF", + "name": "HEAP_TRACING_OFF", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_STANDALONE", + "name": "HEAP_TRACING_STANDALONE", + "range": null, + "title": "Standalone", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_TOHOST", + "name": "HEAP_TRACING_TOHOST", + "range": null, + "title": "Host-based", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables the heap tracing API defined in esp_heap_trace.h.\n\nThis function causes a moderate increase in IRAM code side and a minor increase in heap function\n(malloc/free/realloc) CPU overhead, even when the tracing feature is not used.\nSo it's best to keep it disabled unless tracing is being used.", + "id": "component-config-heap-memory-debugging-heap-tracing", + "name": "HEAP_TRACING_DEST", + "title": "Heap tracing", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disables heap tracing API.", + "id": "HEAP_TRACING", + "name": "HEAP_TRACING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && HEAP_TRACE_HASH_MAP", + "help": "When enabled this configuration forces the hash map to be placed in external RAM.", + "id": "HEAP_TRACE_HASH_MAP_IN_EXT_RAM", + "name": "HEAP_TRACE_HASH_MAP_IN_EXT_RAM", + "range": null, + "title": "Place hash map in external RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "HEAP_TRACE_HASH_MAP", + "help": "Defines the number of entries in the heap trace hashmap. Each entry takes 8 bytes.\nThe bigger this number is, the better the performance. Recommended range: 200 - 2000.", + "id": "HEAP_TRACE_HASH_MAP_SIZE", + "name": "HEAP_TRACE_HASH_MAP_SIZE", + "range": null, + "title": "The number of entries in the hash map", + "type": "int" + } + ], + "depends_on": "HEAP_TRACING_STANDALONE", + "help": "Enable this flag to use a hash map to increase performance in handling\nheap trace records.\n\nHeap trace standalone supports storing records as a list, or a list + hash map.\n\nUsing only a list takes less memory, but calls to 'free' will get slower as the\nlist grows. This is particularly affected when using HEAP_TRACE_ALL mode.\n\nBy using a list + hash map, calls to 'free' remain fast, at the cost of\nadditional memory to store the hash map.", + "id": "HEAP_TRACE_HASH_MAP", + "name": "HEAP_TRACE_HASH_MAP", + "range": null, + "title": "Use hash map mechanism to access heap trace records", + "type": "bool" + }, + { + "children": [], + "depends_on": "HEAP_TRACING", + "help": "Number of stack frames to save when tracing heap operation callers.\n\nMore stack frames uses more memory in the heap trace buffer (and slows down allocation), but\ncan provide useful information.", + "id": "HEAP_TRACING_STACK_DEPTH", + "name": "HEAP_TRACING_STACK_DEPTH", + "range": null, + "title": "Heap tracing stack depth", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable the user to implement function hooks triggered for each successful allocation and free.", + "id": "HEAP_USE_HOOKS", + "name": "HEAP_USE_HOOKS", + "range": null, + "title": "Use allocation and free hooks", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "HEAP_TASK_TRACKING", + "help": "When enabled, this configuration allows the user to keep trace of the memory usage\nof a task that has been deleted.\n\nThis allows the user to verify that no memory allocated within a task remains unfreed\nbefore terminating the task\n\nNote that this feature cannot keep track of a task deletion if the task is allocated statically", + "id": "HEAP_TRACK_DELETED_TASKS", + "name": "HEAP_TRACK_DELETED_TASKS", + "range": null, + "title": "Keep information about the memory usage of deleted tasks", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables tracking the task responsible for each heap allocation.\n\nNote: Allocating or freeing memory or using the task tracking API will lead to a crash when the\nscheduler is not working (e.g, after calling vTaskSuspendAll).", + "id": "HEAP_TASK_TRACKING", + "name": "HEAP_TASK_TRACKING", + "range": null, + "title": "Enable heap task tracking", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When enabled, if a memory allocation operation fails it will cause a system abort.", + "id": "HEAP_ABORT_WHEN_ALLOCATION_FAILS", + "name": "HEAP_ABORT_WHEN_ALLOCATION_FAILS", + "range": null, + "title": "Abort if memory allocation fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HEAP_TLSF", + "help": "Enable this flag to use heap functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", + "id": "HEAP_TLSF_USE_ROM_IMPL", + "name": "HEAP_TLSF_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of heap tlsf library", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this flag to save up RAM space by placing the heap component in the flash memory\n\nNote that it is only safe to enable this configuration if no functions from esp_heap_caps.h\nor esp_heap_trace.h are called from IRAM ISR which runs when cache is disabled.", + "id": "HEAP_PLACE_FUNCTION_INTO_FLASH", + "name": "HEAP_PLACE_FUNCTION_INTO_FLASH", + "range": null, + "title": "Force the entire heap component to be placed in flash memory", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-heap-memory-debugging", + "title": "Heap memory debugging", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this option to use Log V1. Recommended for projects with strict stack constraints\nor that prioritize performance over flexibility.", + "id": "LOG_VERSION_1", + "name": "LOG_VERSION_1", + "range": null, + "title": "V1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use Log V2. Recommended for projects that require smaller binaries,\nruntime log formatting configuration, or advanced logging features.", + "id": "LOG_VERSION_2", + "name": "LOG_VERSION_2", + "range": null, + "title": "V2", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the log version to be used by the ESP log component.\n\n- \"V1\": This version integrates log formatting into the format string provided by the user.\n Logs are processed and formatted during compile time, leading to a larger binary file.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: Log strings are stored in Flash with added formatting characters.\n Format string on flash: \"[0;32mI (%lu) %s: chip revision: v%d.%d [0m\"\n\n- \"V2\": This version centralizes log formatting within the esp_log() function.\n User-supplied format strings are stored without added formatting, reducing binary size.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: This version supports runtime configuration of formatting and is more flexible,\n logging from constrained environments (ex.: ISR, Startup, Cache disabled).\n It may consumes a bit more stack and affect performance.\n Format string on flash: \"chip revision: v%d.%d\"\n\nUse V1 for minimal stack usage and simpler implementation.\nUse V2 for smaller binary sizes, more flexible log formatting, and advanced features like disabling\ncolors or timestamps.", + "id": "component-config-log-log-version", + "name": "LOG_VERSION", + "title": "Log version", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration sets the log version number based on the chosen log version.", + "id": "LOG_VERSION", + "name": "LOG_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_NONE", + "name": "LOG_DEFAULT_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_ERROR", + "name": "LOG_DEFAULT_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_WARN", + "name": "LOG_DEFAULT_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_INFO", + "name": "LOG_DEFAULT_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_DEBUG", + "name": "LOG_DEFAULT_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_VERBOSE", + "name": "LOG_DEFAULT_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set() function if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\n\nBy default, this setting limits which log statements\nare compiled into the program. For example, selecting\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible. To allow increasing log\nlevel above the default at runtime, see the next option.", + "id": "component-config-log-log-level-default-log-verbosity", + "name": "LOG_DEFAULT_LEVEL", + "title": "Default log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_DEFAULT_LEVEL", + "name": "LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_MAXIMUM_EQUALS_DEFAULT", + "name": "LOG_MAXIMUM_EQUALS_DEFAULT", + "range": null, + "title": "Same as default", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_ERROR", + "name": "LOG_MAXIMUM_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_WARN", + "name": "LOG_MAXIMUM_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_INFO", + "name": "LOG_MAXIMUM_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_DEBUG", + "name": "LOG_MAXIMUM_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_VERBOSE", + "name": "LOG_MAXIMUM_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "This config option sets the highest log verbosity that it's possible to select\nat runtime by calling esp_log_level_set(). This level may be higher than\nthe default verbosity level which is set when the app starts up.\n\nThis can be used enable debugging output only at a critical point, for a particular\ntag, or to minimize startup time but then enable more logs once the firmware has\nloaded.\n\nNote that increasing the maximum available log level will increase the firmware\nbinary size.\n\nThis option only applies to logging from the app, the bootloader log level is\nfixed at compile time to the separate \"Bootloader log verbosity\" setting.", + "id": "component-config-log-log-level-maximum-log-verbosity", + "name": "LOG_MAXIMUM_LEVEL", + "title": "Maximum log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MAXIMUM_LEVEL", + "name": "LOG_MAXIMUM_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", + "id": "LOG_MASTER_LEVEL", + "name": "LOG_MASTER_LEVEL", + "range": null, + "title": "Enable global master log level", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", + "id": "LOG_DYNAMIC_LEVEL_CONTROL", + "name": "LOG_DYNAMIC_LEVEL_CONTROL", + "range": null, + "title": "Enable dynamic log level changes at runtime", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", + "id": "LOG_TAG_LEVEL_IMPL_NONE", + "name": "LOG_TAG_LEVEL_IMPL_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", + "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "range": null, + "title": "Linked List", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "range": null, + "title": "Cache + Linked List", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", + "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks", + "name": "LOG_TAG_LEVEL_IMPL", + "title": "Method of tag level checks", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", + "id": "LOG_TAG_LEVEL_CACHE_ARRAY", + "name": "LOG_TAG_LEVEL_CACHE_ARRAY", + "range": null, + "title": "Array", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", + "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "range": null, + "title": "Binary Min-Heap", + "type": "bool" + } + ], + "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", + "id": "component-config-log-log-level-level-settings-cache-implementation", + "name": "LOG_TAG_LEVEL_CACHE_IMPL", + "title": "Cache implementation", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "range": null, + "title": "Log Tag Cache Size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-log-log-level-level-settings", + "title": "Level Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log-log-level", + "title": "Log Level", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.\n\nThis is disabled by default, as colors are added in IDF Monitor. If you want to use new lines\nin the messages or you are using a different terminal program, you may want to enable this option.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2", + "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", + "id": "LOG_COLORS_SUPPORT", + "name": "LOG_COLORS_SUPPORT", + "range": null, + "title": "Allow enabling color output at run time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_NONE", + "name": "LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_RTOS", + "name": "LOG_TIMESTAMP_SOURCE_RTOS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "range": null, + "title": "System Time (HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "range": null, + "title": "System Time (YY-MM-DD HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_UNIX", + "name": "LOG_TIMESTAMP_SOURCE_UNIX", + "range": null, + "title": "Unix time in milliseconds", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- \"System time (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- \"Unix time in milliseconds\" is the same as the two above,\n but in Unix time format and in milliseconds.\n e.g. (1718795571035).\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", + "id": "component-config-log-format-timestamp", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2", + "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", + "id": "LOG_TIMESTAMP_SUPPORT", + "name": "LOG_TIMESTAMP_SUPPORT", + "range": null, + "title": "Allow enabling timestamp output at run time", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-log-format", + "title": "Format", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MODE_TEXT_EN", + "name": "LOG_MODE_TEXT_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MODE_BINARY_EN", + "name": "LOG_MODE_BINARY_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", + "id": "LOG_MODE_TEXT", + "name": "LOG_MODE_TEXT", + "range": null, + "title": "Text Log Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", + "id": "LOG_MODE_BINARY", + "name": "LOG_MODE_BINARY", + "range": null, + "title": "Binary Log Mode", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-log-settings-log-mode", + "name": "LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-settings", + "title": "Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_IN_IRAM", + "name": "LOG_IN_IRAM", + "range": null, + "title": "Place logging functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-log", + "title": "Log", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_INTERNAL_MEM_ALLOC", + "name": "MBEDTLS_INTERNAL_MEM_ALLOC", + "range": null, + "title": "Internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", + "help": null, + "id": "MBEDTLS_EXTERNAL_MEM_ALLOC", + "name": "MBEDTLS_EXTERNAL_MEM_ALLOC", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEFAULT_MEM_ALLOC", + "name": "MBEDTLS_DEFAULT_MEM_ALLOC", + "range": null, + "title": "Default alloc mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CUSTOM_MEM_ALLOC", + "name": "MBEDTLS_CUSTOM_MEM_ALLOC", + "range": null, + "title": "Custom alloc mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", + "help": "Allows to use IRAM memory region as 8bit accessible region.\n\nTLS input and output buffers will be allocated in IRAM section which is 32bit aligned\nmemory. Every unaligned (8bit or 16bit) access will result in an exception\nand incur penalty of certain clock cycles per unaligned read/write.", + "id": "MBEDTLS_IRAM_8BIT_MEM_ALLOC", + "name": "MBEDTLS_IRAM_8BIT_MEM_ALLOC", + "range": null, + "title": "Internal IRAM", + "type": "bool" + } + ], + "depends_on": null, + "help": "Allocation strategy for mbedTLS, essentially provides ability to\nallocate all required dynamic allocations from,\n\n- Internal DRAM memory only\n- External SPIRAM memory only\n- Either internal or external memory based on default malloc()\n behavior in ESP-IDF\n- Custom allocation mode, by overwriting calloc()/free() using\n mbedtls_platform_set_calloc_free() function\n- Internal IRAM memory wherever applicable else internal DRAM\n\nRecommended mode here is always internal (*), since that is most preferred\nfrom security perspective. But if application requirement does not\nallow sufficient free internal memory then alternate mode can be\nselected.\n\n(*) In case of ESP32-S2/ESP32-S3, hardware allows encryption of external\nSPIRAM contents provided hardware flash encryption feature is enabled.\nIn that case, using external SPIRAM allocation strategy is also safe choice\nfrom security perspective.", + "id": "component-config-mbedtls-memory-allocation-strategy", + "name": "MBEDTLS_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "children": [], + "depends_on": "!MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "help": "Maximum TLS message length (in bytes) supported by mbedTLS.\n\n16384 is the default and this value is required to comply\nfully with TLS standards.\n\nHowever you can set a lower value in order to save RAM. This\nis safe if the other end of the connection supports Maximum\nFragment Length Negotiation Extension (max_fragment_length,\nsee RFC6066) or you know for certain that it will never send a\nmessage longer than a certain number of bytes.\n\nIf the value is set too low, symptoms are a failed TLS\nhandshake or a return value of MBEDTLS_ERR_SSL_INVALID_RECORD\n(-0x7200).", + "id": "MBEDTLS_SSL_MAX_CONTENT_LEN", + "name": "MBEDTLS_SSL_MAX_CONTENT_LEN", + "range": null, + "title": "TLS maximum message content length", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "help": "This defines maximum incoming fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", + "id": "MBEDTLS_SSL_IN_CONTENT_LEN", + "name": "MBEDTLS_SSL_IN_CONTENT_LEN", + "range": [ + 512, + 16384 + ], + "title": "TLS maximum incoming fragment length", + "type": "int" + }, + { + "children": [], + "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "help": "This defines maximum outgoing fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", + "id": "MBEDTLS_SSL_OUT_CONTENT_LEN", + "name": "MBEDTLS_SSL_OUT_CONTENT_LEN", + "range": [ + 512, + 16384 + ], + "title": "TLS maximum outgoing fragment length", + "type": "int" + } + ], + "depends_on": null, + "help": "If enabled, this option allows customizing TLS in/out fragment length\nin asymmetric way. Please note that enabling this with default values\nsaves 12KB of dynamic memory per TLS connection.", + "id": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "name": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "range": null, + "title": "Asymmetric in/out fragment length", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", + "help": "Free CA certificate after its usage in the handshake process.\nThis option will decrease the heap footprint for the TLS handshake, but may lead to a problem:\nIf the respective ssl object needs to perform the TLS handshake again,\nthe CA certificate should once again be registered to the ssl object.", + "id": "MBEDTLS_DYNAMIC_FREE_CA_CERT", + "name": "MBEDTLS_DYNAMIC_FREE_CA_CERT", + "range": null, + "title": "Free SSL CA certificate after its usage", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_DYNAMIC_BUFFER", + "help": "Free private key and DHM data after its usage in handshake process.\n\nThe option will decrease heap cost when handshake, but also lead to problem:\n\nBecause all certificate, private key and DHM data are freed so users should register\ncertificate and private key to ssl config object again.", + "id": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", + "name": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", + "range": null, + "title": "Free private key and DHM data after its usage", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_LINUX && !MBEDTLS_SSL_PROTO_DTLS && !MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", + "help": "Using dynamic TX/RX buffer. After enabling this option, mbedTLS will\nallocate TX buffer when need to send data and then free it if all data\nis sent, allocate RX buffer when need to receive data and then free it\nwhen all data is used or read by upper layer.\n\nBy default, when SSL is initialized, mbedTLS also allocate TX and\nRX buffer with the default value of \"MBEDTLS_SSL_OUT_CONTENT_LEN\" or\n\"MBEDTLS_SSL_IN_CONTENT_LEN\", so to save more heap, users can set\nthe options to be an appropriate value.", + "id": "MBEDTLS_DYNAMIC_BUFFER", + "name": "MBEDTLS_DYNAMIC_BUFFER", + "range": null, + "title": "Using dynamic TX/RX buffer", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_WARN", + "name": "MBEDTLS_DEBUG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_INFO", + "name": "MBEDTLS_DEBUG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_DEBUG", + "name": "MBEDTLS_DEBUG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_VERBOSE", + "name": "MBEDTLS_DEBUG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_DEBUG", + "help": "Set mbedTLS debugging level", + "id": "component-config-mbedtls-enable-mbedtls-debugging-set-mbedtls-debugging-level", + "name": "MBEDTLS_DEBUG_LEVEL", + "title": "Set mbedTLS debugging level", + "type": "choice" + } + ], + "depends_on": null, + "help": "Enable mbedTLS debugging functions at compile time.\n\nIf this option is enabled, you can include\n\"mbedtls/esp_debug.h\" and call mbedtls_esp_enable_debug_log()\nat runtime in order to enable mbedTLS debug output via the ESP\nlog mechanism.", + "id": "MBEDTLS_DEBUG", + "name": "MBEDTLS_DEBUG", + "range": null, + "title": "Enable mbedTLS debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL", + "name": "MBEDTLS_DEBUG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", + "help": null, + "id": "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", + "name": "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", + "range": null, + "title": "TLS 1.3 middlebox compatibility mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", + "help": null, + "id": "MBEDTLS_SSL_TLS1_3_KEXM_PSK", + "name": "MBEDTLS_SSL_TLS1_3_KEXM_PSK", + "range": null, + "title": "TLS 1.3 PSK key exchange mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", + "help": null, + "id": "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL", + "name": "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL", + "range": null, + "title": "TLS 1.3 ephemeral key exchange mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", + "help": null, + "id": "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL", + "name": "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL", + "range": null, + "title": "TLS 1.3 PSK ephemeral key exchange mode", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", + "id": "component-config-mbedtls-mbedtls-v3-x-related-support-tls-1-3-protocol-tls-1-3-related-configurations", + "title": "TLS 1.3 related configurations", + "type": "menu" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", + "help": null, + "id": "MBEDTLS_SSL_PROTO_TLS1_3", + "name": "MBEDTLS_SSL_PROTO_TLS1_3", + "range": null, + "title": "Support TLS 1.3 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This enables the SSL buffer to be resized automatically\nbased on the negotiated maximum fragment length in each direction.", + "id": "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", + "name": "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", + "range": null, + "title": "Variable SSL buffer length", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECDH_C && MBEDTLS_ECP_RESTARTABLE", + "help": "Use the legacy ECDH context format.\nDefine this option only if you enable MBEDTLS_ECP_RESTARTABLE or if you\nwant to access ECDH context fields directly.", + "id": "MBEDTLS_ECDH_LEGACY_CONTEXT", + "name": "MBEDTLS_ECDH_LEGACY_CONTEXT", + "range": null, + "title": "Use a backward compatible ECDH context (Experimental)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables users to configure the set of trusted certificates\nthrough a callback instead of a linked list.\n\nSee mbedTLS documentation for required API and more details.", + "id": "MBEDTLS_X509_TRUSTED_CERT_CALLBACK", + "name": "MBEDTLS_X509_TRUSTED_CERT_CALLBACK", + "range": null, + "title": "Enable trusted certificate callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C", + "help": "Enable serialization of the TLS context structures\nThis is a local optimization in handling a single, potentially long-lived connection.\n\nSee mbedTLS documentation for required API and more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_SSL_CONTEXT_SERIALIZATION", + "name": "MBEDTLS_SSL_CONTEXT_SERIALIZATION", + "range": null, + "title": "Enable serialization of the TLS context structures", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Keep the peer's certificate after completion of the handshake.\nDisabling this option will save about 4kB of heap and some code size.\n\nSee mbedTLS documentation for required API and more details.", + "id": "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", + "name": "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", + "range": null, + "title": "Keep peer certificate after handshake completion", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable shared symmetric keys export for TLS sessions using mbedtls_ssl_export_keying_material()\nafter SSL handshake. The process for deriving the keys is specified in RFC 5705 for TLS 1.2\nand in RFC 8446, Section 7.5, for TLS 1.3.", + "id": "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT", + "name": "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT", + "range": null, + "title": "Enable keying material export", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_X509_CRL_PARSE_C", + "help": "Enable PKCS number 7 core for using PKCS number 7-formatted signatures.", + "id": "MBEDTLS_PKCS7_C", + "name": "MBEDTLS_PKCS7_C", + "range": null, + "title": "Enable PKCS number 7", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 || MBEDTLS_SSL_DTLS_CONNECTION_ID", + "help": "Controls the use of record plaintext padding in TLS 1.3 and\nwhen using the Connection ID extension in DTLS 1.2.\n\nThe padding will always be chosen so that the length of the\npadded plaintext is a multiple of the value of this option.\n\nNotes:\n A value of 1 means that no padding will be used for outgoing records.\n On systems lacking division instructions, a power of two should be preferred.", + "id": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "name": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "range": null, + "title": "Record plaintext padding", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", + "help": "Maximum length of CIDs used for incoming DTLS messages", + "id": "MBEDTLS_SSL_CID_IN_LEN_MAX", + "name": "MBEDTLS_SSL_CID_IN_LEN_MAX", + "range": null, + "title": "Maximum length of CIDs used for incoming DTLS messages", + "type": "int" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", + "help": "Maximum length of CIDs used for outgoing DTLS messages", + "id": "MBEDTLS_SSL_CID_OUT_LEN_MAX", + "name": "MBEDTLS_SSL_CID_OUT_LEN_MAX", + "range": null, + "title": "Maximum length of CIDs used for outgoing DTLS messages", + "type": "int" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "help": "Enable support for the DTLS Connection ID extension which allows to\nidentify DTLS connections across changes in the underlying transport.", + "id": "MBEDTLS_SSL_DTLS_CONNECTION_ID", + "name": "MBEDTLS_SSL_DTLS_CONNECTION_ID", + "range": null, + "title": "Support for the DTLS Connection ID extension", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "help": "Enable support for negotiation of DTLS-SRTP (RFC 5764) through the use_srtp extension.\n\nSee mbedTLS documentation for required API and more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_SSL_DTLS_SRTP", + "name": "MBEDTLS_SSL_DTLS_SRTP", + "range": null, + "title": "Enable support for negotiation of DTLS-SRTP (RFC 5764)", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "id": "component-config-mbedtls-mbedtls-v3-x-related-dtls-based-configurations", + "title": "DTLS-based configurations", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-mbedtls-v3-x-related", + "title": "mbedTLS v3.x related", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", + "range": null, + "title": "Use the full default certificate bundle", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Use only the most common certificates from the default bundles, reducing the size with 50%,\nwhile still having around 99% coverage.", + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", + "range": null, + "title": "Use only the most common certificates from the default bundles", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", + "range": null, + "title": "Do not use the default certificate bundle", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "component-config-mbedtls-certificate-bundle-enable-trusted-root-certificate-bundle-default-certificate-bundle-options", + "name": "MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE", + "title": "Default certificate bundle options", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", + "help": "Name of the custom certificate directory or file. This path is evaluated\nrelative to the project root directory.", + "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", + "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", + "range": null, + "title": "Custom certificate bundle path", + "type": "string" + } + ], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", + "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", + "range": null, + "title": "Add custom certificates to the default bundle", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE && !MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", + "help": "Include the deprecated list of root certificates in the bundle.\nThis list gets updated when a certificate is removed from the Mozilla's\nNSS root certificate store. This config can be enabled if you would like\nto ensure that none of the certificates that were deployed in the product\nare affected because of the update to bundle. In turn, enabling this\nconfig keeps expired, retracted certificates in the bundle and it may\npose a security risk.\n\n- Deprecated cert list may grow based based on sync with upstream bundle\n- Deprecated certs would be be removed in ESP-IDF (next) major release", + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", + "range": null, + "title": "Add deprecated root certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", + "range": null, + "title": "Maximum no of certificates allowed in certificate bundle", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable support for large number of default root certificates\n\nWhen enabled this option allows user to store default as well\nas customer specific root certificates in compressed format rather\nthan storing full certificate. For the root certificates the public key and the subject name\nwill be stored.", + "id": "MBEDTLS_CERTIFICATE_BUNDLE", + "name": "MBEDTLS_CERTIFICATE_BUNDLE", + "range": null, + "title": "Enable trusted root certificate bundle", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-certificate-bundle", + "title": "Certificate Bundle", + "type": "menu" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable \"non-blocking\" ECC operations that can return early and be resumed.", + "id": "MBEDTLS_ECP_RESTARTABLE", + "name": "MBEDTLS_ECP_RESTARTABLE", + "range": null, + "title": "Enable mbedTLS ecp restartable", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_DES_C", + "help": "Enable the CMAC (Cipher-based Message Authentication Code) mode for\nblock ciphers.", + "id": "MBEDTLS_CMAC_C", + "name": "MBEDTLS_CMAC_C", + "range": null, + "title": "Enable CMAC mode for block ciphers", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_AES_USE_INTERRUPT", + "help": "This config helps to set the interrupt priority level for the AES peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", + "id": "MBEDTLS_AES_INTERRUPT_LEVEL", + "name": "MBEDTLS_AES_INTERRUPT_LEVEL", + "range": [ + 0, + 3 + ], + "title": "AES hardware interrupt level", + "type": "int" + } + ], + "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_AES", + "help": "Use an interrupt to coordinate long AES operations.\n\nThis allows other code to run on the CPU while an AES operation is pending.\nOtherwise the CPU busy-waits.", + "id": "MBEDTLS_AES_USE_INTERRUPT", + "name": "MBEDTLS_AES_USE_INTERRUPT", + "range": null, + "title": "Use interrupt for long AES operations", + "type": "bool" + } + ], + "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_AES_SUPPORTED", + "help": "Enable hardware accelerated AES encryption & decryption.\n\nNote that if the ESP32 CPU is running at 240MHz, hardware AES does not\noffer any speed boost over software AES.", + "id": "MBEDTLS_HARDWARE_AES", + "name": "MBEDTLS_HARDWARE_AES", + "range": null, + "title": "Enable hardware AES acceleration", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "range": null, + "title": "Low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "range": null, + "title": "Medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "range": null, + "title": "High", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", + "help": "The strength of the pseudo rounds functions can be configured to low, medium and high.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nhardware AES encryption/decryption operations.", + "id": "component-config-mbedtls-enable-aes-hardware-s-pseudo-round-function-strength-of-the-pseudo-rounds-function", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", + "title": "Strength of the pseudo rounds function", + "type": "choice" + } + ], + "depends_on": "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION", + "help": "Enables the pseudo round function of the AES peripheral.\nEnabling this would impact the performance of the AES operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide.", + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", + "range": null, + "title": "Enable AES hardware's pseudo round function", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_AES_SUPPORT_GCM && MBEDTLS_HARDWARE_AES", + "help": "Enable partially hardware accelerated GCM. GHASH calculation is still done\nin software.\n\nIf MBEDTLS_HARDWARE_GCM is disabled and MBEDTLS_HARDWARE_AES is enabled then\nmbedTLS will still use the hardware accelerated AES block operation, but\non a single block at a time.", + "id": "MBEDTLS_HARDWARE_GCM", + "name": "MBEDTLS_HARDWARE_GCM", + "range": null, + "title": "Enable partially hardware accelerated GCM", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_AES && MBEDTLS_GCM_C", + "help": "Enable this config to support fallback to software definitions for a non-AES\ncipher GCM operation as we support hardware acceleration only for AES cipher.\nSome of the non-AES ciphers used in a GCM operation are DES, ARIA, CAMELLIA,\nCHACHA20, BLOWFISH.\n\nIf this config is disabled, performing a non-AES cipher GCM operation with\nthe config MBEDTLS_HARDWARE_AES enabled will result in calculation of an\nAES-GCM operation instead for the given input values and thus could lead\nto failure in certificate validation which would ultimately lead to a SSL\nhandshake failure.\n\nThis config being by-default enabled leads to an increase in binary size\nfootprint of ~2.5KB.\nIn case you are sure that your use case (for example, client and server\nconfigurations in case of a TLS handshake) would not involve any GCM\noperations using a non-AES cipher, you can safely disable this config,\nleading to reduction in binary size footprint.", + "id": "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER", + "name": "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER", + "range": null, + "title": "Enable support for non-AES ciphers in GCM operation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_MPI", + "help": "Fallback to software implementation for RSA key lengths\nlarger than SOC_RSA_MAX_BIT_LEN. If this is not active\nthen the ESP will be unable to process keys greater\nthan SOC_RSA_MAX_BIT_LEN.", + "id": "MBEDTLS_LARGE_KEY_SOFTWARE_MPI", + "name": "MBEDTLS_LARGE_KEY_SOFTWARE_MPI", + "range": null, + "title": "Fallback to software implementation for larger MPI values", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_MPI_USE_INTERRUPT", + "help": "This config helps to set the interrupt priority level for the MPI peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", + "id": "MBEDTLS_MPI_INTERRUPT_LEVEL", + "name": "MBEDTLS_MPI_INTERRUPT_LEVEL", + "range": [ + 0, + 3 + ], + "title": "MPI hardware interrupt level", + "type": "int" + } + ], + "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_MPI", + "help": "Use an interrupt to coordinate long MPI operations.\n\nThis allows other code to run on the CPU while an MPI operation is pending.\nOtherwise the CPU busy-waits.", + "id": "MBEDTLS_MPI_USE_INTERRUPT", + "name": "MBEDTLS_MPI_USE_INTERRUPT", + "range": null, + "title": "Use interrupt for MPI exp-mod operations", + "type": "bool" + } + ], + "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_MPI_SUPPORTED", + "help": "Enable hardware accelerated multiple precision integer operations.\n\nHardware accelerated multiplication, modulo multiplication,\nand modular exponentiation for up to SOC_RSA_MAX_BIT_LEN bit results.\n\nThese operations are used by RSA.", + "id": "MBEDTLS_HARDWARE_MPI", + "name": "MBEDTLS_HARDWARE_MPI", + "range": null, + "title": "Enable hardware MPI (bignum) acceleration", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_SHA_SUPPORTED", + "help": "Enable hardware accelerated SHA1, SHA256, SHA384 & SHA512 in mbedTLS.\n\nDue to a hardware limitation, on the ESP32 hardware acceleration is only\nguaranteed if SHA digests are calculated one at a time. If more\nthan one SHA digest is calculated at the same time, one will\nbe calculated fully in hardware and the rest will be calculated\n(at least partially calculated) in software. This happens automatically.\n\nSHA hardware acceleration is faster than software in some situations but\nslower in others. You should benchmark to find the best setting for you.", + "id": "MBEDTLS_HARDWARE_SHA", + "name": "MBEDTLS_HARDWARE_SHA", + "range": null, + "title": "Enable hardware SHA acceleration", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECC", + "help": "Fallback to software implementation of ECC point multiplication and point verification\nfor curves not supported in hardware.", + "id": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", + "name": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", + "range": null, + "title": "Fallback to software implementation for curves not supported in hardware", + "type": "bool" + } + ], + "depends_on": "SOC_ECC_SUPPORTED", + "help": "Enable hardware accelerated ECC point multiplication and point verification for points\non curve SECP192R1 and SECP256R1 in mbedTLS", + "id": "MBEDTLS_HARDWARE_ECC", + "name": "MBEDTLS_HARDWARE_ECC", + "range": null, + "title": "Enable hardware ECC acceleration", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Use ROM MD5 in mbedTLS.", + "id": "MBEDTLS_ROM_MD5", + "name": "MBEDTLS_ROM_MD5", + "range": null, + "title": "Use MD5 implementation in ROM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_SUPPORTED", + "help": "Enable hardware accelerated ECDSA peripheral to sign data\non curve SECP192R1 and SECP256R1 in mbedTLS.\n\nNote that for signing, the private key has to be burnt in an efuse key block\nwith key purpose set to ECDSA_KEY.\nIf no key is burnt, it will report an error\n\nThe key should be burnt in little endian format. espefuse.py utility handles it internally\nbut care needs to be taken while burning using esp_efuse APIs", + "id": "MBEDTLS_HARDWARE_ECDSA_SIGN", + "name": "MBEDTLS_HARDWARE_ECDSA_SIGN", + "range": null, + "title": "Enable ECDSA signing using on-chip ECDSA peripheral", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE", + "help": null, + "id": "MBEDTLS_TEE_SEC_STG_ECDSA_SIGN", + "name": "MBEDTLS_TEE_SEC_STG_ECDSA_SIGN", + "range": null, + "title": "Enable ECDSA signing using TEE secure storage", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "help": "The ECDSA peripheral before ESP32-H2 v1.2 does not offer constant time ECDSA sign operation.\nThis time can be observed through power profiling of the device,\nmaking the ECDSA private key vulnerable to side-channel timing attacks.\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nIt is highly recommended to also enable Secure Boot for the device in addition to this countermeasure\nso that only trusted software can execute on the device.\nThis countermeasure can be safely disabled for ESP32-H2 v1.2 and above.", + "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", + "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", + "range": null, + "title": "Mask original ECDSA sign operation under dummy sign operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "help": "This option adds a delay after the actual ECDSA signature operation\nso that the entire operation appears to be constant time for the software.\nThis fix helps in protecting the device only in case of remote timing attack on the ECDSA private key.\nFor e.g., When an interface is exposed by the device to perform ECDSA signature\nof an arbitrary message.\nThe signature time would appear to be constant to the external entity after enabling\nthis option.\nThis countermeasure can be safely disabled for ESP32-H2 v1.2 and above.", + "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", + "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", + "range": null, + "title": "Make ECDSA signature operation pseudo constant time for software", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "id": "component-config-mbedtls-enable-software-countermeasure-for-ecdsa-signing-using-on-chip-ecdsa-peripheral", + "title": "Enable Software Countermeasure for ECDSA signing using on-chip ECDSA peripheral", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_SUPPORTED", + "help": "Enable hardware accelerated ECDSA peripheral to verify signature\non curve SECP192R1 and SECP256R1 in mbedTLS.", + "id": "MBEDTLS_HARDWARE_ECDSA_VERIFY", + "name": "MBEDTLS_HARDWARE_ECDSA_VERIFY", + "range": null, + "title": "Enable ECDSA signature verification using on-chip ECDSA peripheral", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", + "id": "MBEDTLS_ATCA_HW_ECDSA_SIGN", + "name": "MBEDTLS_ATCA_HW_ECDSA_SIGN", + "range": null, + "title": "Enable hardware ECDSA sign acceleration when using ATECC608A", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", + "id": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", + "name": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", + "range": null, + "title": "Enable hardware ECDSA verify acceleration when using ATECC608A", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HAVE_TIME", + "help": "Enabling this config will provide users with a function\n\"mbedtls_platform_set_time()\" that allows to set an alternative\ntime function pointer.", + "id": "MBEDTLS_PLATFORM_TIME_ALT", + "name": "MBEDTLS_PLATFORM_TIME_ALT", + "range": null, + "title": "Enable mbedtls time support: platform-specific", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_HAVE_TIME", + "help": "Enables X.509 certificate expiry checks in mbedTLS.\n\nIf this option is disabled (default) then X.509 certificate\n\"valid from\" and \"valid to\" timestamp fields are ignored.\n\nIf this option is enabled, these fields are compared with the\ncurrent system date and time. The time is retrieved using the\nstandard time() and gmtime() functions. If the certificate is not\nvalid for the current system time then verification will fail with\ncode MBEDTLS_X509_BADCERT_FUTURE or MBEDTLS_X509_BADCERT_EXPIRED.\n\nEnabling this option requires adding functionality in the firmware\nto set the system clock to a valid timestamp before using TLS. The\nrecommended way to do this is via ESP-IDF's SNTP functionality, but\nany method can be used.\n\nIn the case where only a small number of certificates are trusted by\nthe device, please carefully consider the tradeoffs of enabling this\noption. There may be undesired consequences, for example if all\ntrusted certificates expire while the device is offline and a TLS\nconnection is required to update. Or if an issue with the SNTP\nserver means that the system time is invalid for an extended period\nafter a reset.", + "id": "MBEDTLS_HAVE_TIME_DATE", + "name": "MBEDTLS_HAVE_TIME_DATE", + "range": null, + "title": "Enable mbedtls certificate expiry check", + "type": "bool" + } + ], + "depends_on": "!ESP_TIME_FUNCS_USE_NONE", + "help": "Enable use of time.h functions (time() and gmtime()) by mbedTLS.\n\nThis option doesn't require the system time to be correct, but enables\nfunctionality that requires relative timekeeping - for example periodic\nexpiry of TLS session tickets or session cache entries.\n\nDisabling this option will save some firmware size, particularly if\nthe rest of the firmware doesn't call any standard timekeeping\nfunctions.", + "id": "MBEDTLS_HAVE_TIME", + "name": "MBEDTLS_HAVE_TIME", + "range": null, + "title": "Enable mbedtls time support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Standard ECDSA is \"fragile\" in the sense that lack of entropy when signing\nmay result in a compromise of the long-term signing key.", + "id": "MBEDTLS_ECDSA_DETERMINISTIC", + "name": "MBEDTLS_ECDSA_DETERMINISTIC", + "range": null, + "title": "Enable deterministic ECDSA", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling MBEDTLS_SHA1_C adds support for SHA-1.\nSHA-1 is considered a weak message digest and its use constitutes\na security risk.\nDisabling this configuration option could impact TLS 1.2 / Wi-Fi Enterprise compatibility\nwith certain older certificates that rely on SHA-1 for digital signatures.\nBefore proceeding, ensure that all your certificates are using stronger hash algorithms,\nsuch as SHA-256 (part of the SHA-2 family).\nIf you're using older certificates or if you're unsure about the impact on your product,\nplease consider testing the changes in a controlled environment for individual features\nlike OTA updates, cloud connectivity, secure local control, etc.", + "id": "MBEDTLS_SHA1_C", + "name": "MBEDTLS_SHA1_C", + "range": null, + "title": "Enable the SHA-1 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable MBEDTLS_SHA512_C adds support for SHA-384 and SHA-512.", + "id": "MBEDTLS_SHA512_C", + "name": "MBEDTLS_SHA512_C", + "range": null, + "title": "Enable the SHA-384 and SHA-512 cryptographic hash algorithms", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling MBEDTLS_SHA3_C adds support for SHA3.\nEnabling this configuration option increases the flash footprint\nby almost 4KB.", + "id": "MBEDTLS_SHA3_C", + "name": "MBEDTLS_SHA3_C", + "range": null, + "title": "Enable the SHA3 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_SERVER_AND_CLIENT", + "name": "MBEDTLS_TLS_SERVER_AND_CLIENT", + "range": null, + "title": "Server & Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_SERVER_ONLY", + "name": "MBEDTLS_TLS_SERVER_ONLY", + "range": null, + "title": "Server", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_CLIENT_ONLY", + "name": "MBEDTLS_TLS_CLIENT_ONLY", + "range": null, + "title": "Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_DISABLED", + "name": "MBEDTLS_TLS_DISABLED", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "mbedTLS can be compiled with protocol support for the TLS\nserver, TLS client, or both server and client.\n\nReducing the number of TLS roles supported saves code size.", + "id": "component-config-mbedtls-tls-protocol-role", + "name": "MBEDTLS_TLS_MODE", + "title": "TLS Protocol Role", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_SERVER", + "name": "MBEDTLS_TLS_SERVER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_CLIENT", + "name": "MBEDTLS_TLS_CLIENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_ENABLED", + "name": "MBEDTLS_TLS_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", + "help": "Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes.", + "id": "MBEDTLS_KEY_EXCHANGE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_PSK", + "range": null, + "title": "Enable PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", + "range": null, + "title": "Enable DHE-PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", + "range": null, + "title": "Enable ECDHE-PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", + "help": "Enable to support RSA PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", + "range": null, + "title": "Enable RSA-PSK based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable to show configuration for different types of pre-shared-key TLS authentatication methods.\n\nLeaving this options disabled will save code size if they are not used.", + "id": "MBEDTLS_PSK_MODES", + "name": "MBEDTLS_PSK_MODES", + "range": null, + "title": "Enable pre-shared-key ciphersuites", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_RSA", + "range": null, + "title": "Enable RSA-only based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-DHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", + "range": null, + "title": "Enable DHE-RSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", + "range": null, + "title": "Enable ECDHE-RSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-ECDSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", + "range": null, + "title": "Enable ECDHE-ECDSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDH-ECDSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", + "range": null, + "title": "Enable ECDH-ECDSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDH-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", + "range": null, + "title": "Enable ECDH-RSA based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to show Elliptic Curve based ciphersuite mode options.\n\nDisabling all Elliptic Curve ciphersuites saves code size and\ncan give slightly faster TLS handshakes, provided the server supports\nRSA-only ciphersuite modes.", + "id": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", + "name": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", + "range": null, + "title": "Support Elliptic Curve based ciphersuites", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECJPAKE_C && MBEDTLS_ECP_DP_SECP256R1_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECJPAKE-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", + "name": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", + "range": null, + "title": "Enable ECJPAKE based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED", + "id": "component-config-mbedtls-tls-key-exchange-methods", + "title": "TLS Key Exchange Methods", + "type": "menu" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_PROTO_TLS1_2", + "help": "The two main uses of renegotiation are (1) refresh keys on long-lived\nconnections and (2) client authentication after the initial handshake.\nIf you don't need renegotiation, disabling it will save code size and\nreduce the possibility of abuse/vulnerability.", + "id": "MBEDTLS_SSL_RENEGOTIATION", + "name": "MBEDTLS_SSL_RENEGOTIATION", + "range": null, + "title": "Support TLS renegotiation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_PROTO_TLS1_2", + "name": "MBEDTLS_SSL_PROTO_TLS1_2", + "range": null, + "title": "Support TLS 1.2 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Provisions for GM/T SSL 1.1 support", + "id": "MBEDTLS_SSL_PROTO_GMTSSL1_1", + "name": "MBEDTLS_SSL_PROTO_GMTSSL1_1", + "range": null, + "title": "Support GM/T SSL 1.1 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_2", + "help": "Requires TLS 1.2 to be enabled for DTLS 1.2", + "id": "MBEDTLS_SSL_PROTO_DTLS", + "name": "MBEDTLS_SSL_PROTO_DTLS", + "range": null, + "title": "Support DTLS protocol (all versions)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Disabling this option will save some code size if it is not needed.", + "id": "MBEDTLS_SSL_ALPN", + "name": "MBEDTLS_SSL_ALPN", + "range": null, + "title": "Support ALPN (Application Layer Protocol Negotiation)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Client support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "name": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "range": null, + "title": "TLS: Client Support for RFC 5077 SSL session tickets", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && (MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C)", + "help": "Server support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "name": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "range": null, + "title": "TLS: Server Support for RFC 5077 SSL session tickets", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_AES_C", + "name": "MBEDTLS_AES_C", + "range": null, + "title": "AES block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_CAMELLIA_C", + "name": "MBEDTLS_CAMELLIA_C", + "range": null, + "title": "Camellia block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the DES block cipher to support 3DES-based TLS ciphersuites.\n\n3DES is vulnerable to the Sweet32 attack and should only be enabled\nif absolutely necessary.", + "id": "MBEDTLS_DES_C", + "name": "MBEDTLS_DES_C", + "range": null, + "title": "DES block cipher (legacy, insecure)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the Blowfish block cipher (not used for TLS sessions.)\n\nThe Blowfish cipher is not used for mbedTLS TLS sessions but can be\nused for other purposes. Read up on the limitations of Blowfish (including\nSweet32) before enabling.", + "id": "MBEDTLS_BLOWFISH_C", + "name": "MBEDTLS_BLOWFISH_C", + "range": null, + "title": "Blowfish block cipher (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the XTEA block cipher.", + "id": "MBEDTLS_XTEA_C", + "name": "MBEDTLS_XTEA_C", + "range": null, + "title": "XTEA block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Counter with CBC-MAC (CCM) modes for AES and/or Camellia ciphers.\n\nDisabling this option saves some code size.", + "id": "MBEDTLS_CCM_C", + "name": "MBEDTLS_CCM_C", + "range": null, + "title": "CCM (Counter with CBC-MAC) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Galois/Counter Mode for AES and/or Camellia ciphers.\n\nThis option is generally faster than CCM.", + "id": "MBEDTLS_GCM_C", + "name": "MBEDTLS_GCM_C", + "range": null, + "title": "GCM (Galois/Counter) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C", + "help": "Enable NIST key wrapping and key wrapping padding.", + "id": "MBEDTLS_NIST_KW_C", + "name": "MBEDTLS_NIST_KW_C", + "range": null, + "title": "NIST key wrapping (KW) and KW padding (KWP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-symmetric-ciphers", + "title": "Symmetric Ciphers", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enable the RIPEMD-160 hash algorithm.", + "id": "MBEDTLS_RIPEMD160_C", + "name": "MBEDTLS_RIPEMD160_C", + "range": null, + "title": "Enable RIPEMD-160 hash algorithm", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable decoding/parsing of PEM formatted certificates.\n\nIf your certificates are all in the simpler DER format, disabling\nthis option will save some code size.", + "id": "MBEDTLS_PEM_PARSE_C", + "name": "MBEDTLS_PEM_PARSE_C", + "range": null, + "title": "Read & Parse PEM formatted certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable writing of PEM formatted certificates.\n\nIf writing certificate data only in DER format, disabling this\noption will save some code size.", + "id": "MBEDTLS_PEM_WRITE_C", + "name": "MBEDTLS_PEM_WRITE_C", + "range": null, + "title": "Write PEM formatted certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Support for parsing X.509 Certificate Revocation Lists.", + "id": "MBEDTLS_X509_CRL_PARSE_C", + "name": "MBEDTLS_X509_CRL_PARSE_C", + "range": null, + "title": "X.509 CRL parsing", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Support for parsing X.509 Certificate Signing Requests", + "id": "MBEDTLS_X509_CSR_PARSE_C", + "name": "MBEDTLS_X509_CSR_PARSE_C", + "range": null, + "title": "X.509 CSR parsing", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-certificates", + "title": "Certificates", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enhance support for reading EC keys using variants of SEC1 not allowed by\nRFC 5915 and RFC 5480.", + "id": "MBEDTLS_PK_PARSE_EC_EXTENDED", + "name": "MBEDTLS_PK_PARSE_EC_EXTENDED", + "range": null, + "title": "Enhance support for reading EC keys", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable the support for parsing public keys of type Short Weierstrass\n(MBEDTLS_ECP_DP_SECP_XXX and MBEDTLS_ECP_DP_BP_XXX) which are using the\ncompressed point format. This parsing is done through ECP module's functions.", + "id": "MBEDTLS_PK_PARSE_EC_COMPRESSED", + "name": "MBEDTLS_PK_PARSE_EC_COMPRESSED", + "range": null, + "title": "Enable the support for parsing public keys of type Short Weierstrass", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "MBEDTLS_ECP_C", + "is_menuconfig": true, + "name": "MBEDTLS_ECP_C", + "range": null, + "title": "Elliptic Curve Ciphers", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enable DHM. Needed to use DHE-xxx TLS ciphersuites.\n\nNote that the security of Diffie-Hellman key exchanges depends on\na suitable prime being used for the exchange. Please see detailed\nwarning text about this in file `mbedtls/dhm.h` file.", + "id": "MBEDTLS_DHM_C", + "name": "MBEDTLS_DHM_C", + "range": null, + "title": "Diffie-Hellman-Merkle key exchange (DHM)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ECDH_C", + "help": "Enable ECDSA. Needed to use ECDSA-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECDSA_C", + "name": "MBEDTLS_ECDSA_C", + "range": null, + "title": "Elliptic Curve DSA", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable ECDH. Needed to use ECDHE-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECDH_C", + "name": "MBEDTLS_ECDH_C", + "range": null, + "title": "Elliptic Curve Diffie-Hellman (ECDH)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable ECJPAKE. Needed to use ECJPAKE-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECJPAKE_C", + "name": "MBEDTLS_ECJPAKE_C", + "range": null, + "title": "Elliptic curve J-PAKE", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP192R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", + "range": null, + "title": "Enable SECP192R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP224R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", + "range": null, + "title": "Enable SECP224R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP256R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", + "range": null, + "title": "Enable SECP256R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP384R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", + "range": null, + "title": "Enable SECP384R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP521R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", + "range": null, + "title": "Enable SECP521R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP192K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", + "range": null, + "title": "Enable SECP192K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP224K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", + "range": null, + "title": "Enable SECP224K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP256K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", + "range": null, + "title": "Enable SECP256K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP256R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP256R1_ENABLED", + "range": null, + "title": "Enable BP256R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP384R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP384R1_ENABLED", + "range": null, + "title": "Enable BP384R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP512R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP512R1_ENABLED", + "range": null, + "title": "Enable BP512R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for CURVE25519 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", + "name": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", + "range": null, + "title": "Enable CURVE25519 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "NIST 'modulo p' optimisations increase Elliptic Curve operation performance.\n\nDisabling this option saves some code size.", + "id": "MBEDTLS_ECP_NIST_OPTIM", + "name": "MBEDTLS_ECP_NIST_OPTIM", + "range": null, + "title": "NIST 'modulo p' optimisations", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "This configuration option enables optimizations to speedup (about 3 ~ 4 times) the ECP\nfixed point multiplication using pre-computed tables in the flash memory.\nEnabling this configuration option increases the flash footprint\n(about 29KB if all Elliptic Curve selected) in the application binary.\n\n# end of Elliptic Curve options", + "id": "MBEDTLS_ECP_FIXED_POINT_OPTIM", + "name": "MBEDTLS_ECP_FIXED_POINT_OPTIM", + "range": null, + "title": "Enable fixed-point multiplication optimisations", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for Poly1305 MAC algorithm.", + "id": "MBEDTLS_POLY1305_C", + "name": "MBEDTLS_POLY1305_C", + "range": null, + "title": "Poly1305 MAC algorithm", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_CHACHA20_C && MBEDTLS_POLY1305_C", + "help": "Enable support for ChaCha20-Poly1305 AEAD algorithm.", + "id": "MBEDTLS_CHACHAPOLY_C", + "name": "MBEDTLS_CHACHAPOLY_C", + "range": null, + "title": "ChaCha20-Poly1305 AEAD algorithm", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable support for Chacha20 stream cipher.", + "id": "MBEDTLS_CHACHA20_C", + "name": "MBEDTLS_CHACHA20_C", + "range": null, + "title": "Chacha20 stream cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for the Hashed Message Authentication Code\n(HMAC)-based key derivation function (HKDF).", + "id": "MBEDTLS_HKDF_C", + "name": "MBEDTLS_HKDF_C", + "range": null, + "title": "HKDF algorithm (RFC 5869)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_THREADING_C", + "help": "Enable threading alt to allow your own alternate threading implementation.", + "id": "MBEDTLS_THREADING_ALT", + "name": "MBEDTLS_THREADING_ALT", + "range": null, + "title": "Enable threading alternate implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_THREADING_C", + "help": "Enable the pthread wrapper layer for the threading layer.", + "id": "MBEDTLS_THREADING_PTHREAD", + "name": "MBEDTLS_THREADING_PTHREAD", + "range": null, + "title": "Enable threading pthread implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "If you do intend to use contexts between threads, you will need to enable\nthis layer to prevent race conditions.", + "id": "MBEDTLS_THREADING_C", + "name": "MBEDTLS_THREADING_C", + "range": null, + "title": "Enable the threading abstraction layer", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables mbedtls_strerror() for converting error codes to error strings.\nDisabling this config can save some code/rodata size as the error\nstring conversion implementation is replaced with an empty stub.", + "id": "MBEDTLS_ERROR_STRINGS", + "name": "MBEDTLS_ERROR_STRINGS", + "range": null, + "title": "Enable error code to error string conversion", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB", + "help": "Enable this flag to use mbedtls crypto algorithm from ROM instead of ESP-IDF\nin case of a bootloader build.\nSimilar to the MBEDTLS_USE_CRYPTO_ROM_IMPL config but enables usage of the\nmbedtls crypto algorithm from ROM for the bootloader build.", + "id": "MBEDTLS_USE_CRYPTO_ROM_IMPL_BOOTLOADER", + "name": "MBEDTLS_USE_CRYPTO_ROM_IMPL_BOOTLOADER", + "range": null, + "title": "Use ROM implementation of the crypto algorithm in the bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB", + "help": "Enable this flag to use mbedtls crypto algorithm from ROM instead of ESP-IDF.\n\nThis configuration option saves flash footprint in the application binary.\nNote that the version of mbedtls crypto algorithm library in ROM(ECO1~ECO3) is v2.16.12,\nand the version of mbedtls crypto algorithm library in ROM(ECO4) is v3.6.0.\nWe have done the security analysis of the mbedtls revision in ROM (ECO1~ECO4)\nand ensured that affected symbols have been patched (removed). If in the future\nmbedtls revisions there are security issues that also affects the version in\nROM (ECO1~ECO4) then we shall patch the relevant symbols. This would increase\nthe flash footprint and hence care must be taken to keep some reserved space\nfor the application binary in flash layout.", + "id": "MBEDTLS_USE_CRYPTO_ROM_IMPL", + "name": "MBEDTLS_USE_CRYPTO_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of the crypto algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": "(VFS_SUPPORT_IO && VFS_SUPPORT_DIR) || IDF_TARGET_LINUX", + "help": "This option enables functions in mbedTLS that use the filesystem.\nIt uses the default filesystem support for the target,\nwhich is added through vfs component for ESP32 based targets or by\nthe host system when the target is Linux.", + "id": "MBEDTLS_FS_IO", + "name": "MBEDTLS_FS_IO", + "range": null, + "title": "Enable functions that use the filesystem", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This options allows weak certificate verification by skipping the hostname verification.\nIt is not recommended to use this option.", + "id": "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION", + "name": "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION", + "range": null, + "title": "Allow weak certificate verification", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls", + "title": "mbedTLS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_NEWLIB", + "name": "LIBC_NEWLIB", + "range": null, + "title": "NewLib", + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TOOLCHAIN_CLANG && IDF_EXPERIMENTAL_FEATURES && ", + "help": null, + "id": "LIBC_PICOLIBC", + "name": "LIBC_PICOLIBC", + "range": null, + "title": "Picolibc (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-libc-libc-to-build-application-with", + "name": "LIBC", + "title": "LibC to build application with", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LIBC_MISC_IN_IRAM", + "name": "LIBC_MISC_IN_IRAM", + "range": null, + "title": "Place misc libc functions (abort/assert/stdatomics) in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "LIBC_NEWLIB", + "help": "Enable this option to include be able to call the lock API from\ncode that runs while cache is disabled, e.g. IRAM interrupts.", + "id": "LIBC_LOCKS_PLACE_IN_IRAM", + "name": "LIBC_LOCKS_PLACE_IN_IRAM", + "range": null, + "title": "Place lock API in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_CRLF", + "name": "LIBC_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_LF", + "name": "LIBC_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_CR", + "name": "LIBC_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "help": "This option allows configuring the desired line endings sent to console\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurrence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-libc-line-ending-for-console-output", + "name": "LIBC_STDOUT_LINE_ENDING", + "title": "Line ending for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_CRLF", + "name": "LIBC_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_LF", + "name": "LIBC_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_CR", + "name": "LIBC_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "help": "This option allows configuring which input sequence on console produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurrence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-libc-line-ending-for-console-input", + "name": "LIBC_STDIN_LINE_ENDING", + "title": "Line ending for console input", + "type": "choice" + }, + { + "children": [], + "depends_on": "LIBC_NEWLIB", + "help": "In most chips the ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\n\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\nwill use functions available in ROM, reducing the application binary size.\nFunctions available in ROM run faster than functions which run from flash. Functions available\nin ROM can also run when flash instruction cache is disabled.\n\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\nthe nano versions and in this building with newlib nano might actually increase the size of\nthe binary. Which functions are present in ROM can be seen from ROM caps:\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", + "id": "LIBC_NEWLIB_NANO_FORMAT", + "name": "LIBC_NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_RTC_HRT", + "name": "LIBC_TIME_SYSCALL_USE_RTC_HRT", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_RTC", + "name": "LIBC_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_HRT", + "name": "LIBC_TIME_SYSCALL_USE_HRT", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_NONE", + "name": "LIBC_TIME_SYSCALL_USE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "This setting defines which hardware timers are used to\nimplement 'gettimeofday' and 'time' functions in C library.\n\n- If both high-resolution (systimer for all targets except ESP32)\n and RTC timers are used, timekeeping will continue in deep sleep.\n Time will be reported at 1 microsecond resolution.\n This is the default, and the recommended option.\n- If only high-resolution timer (systimer) is used, gettimeofday will\n provide time at microsecond resolution.\n Time will not be preserved when going into deep sleep mode.\n- If only RTC timer is used, timekeeping will continue in\n deep sleep, but time will be measured at 6.(6) microsecond\n resolution. Also the gettimeofday function itself may take\n longer to run.\n- If no timers are used, gettimeofday and time functions\n return -1 and set errno to ENOSYS; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-libc-timers-used-for-gettimeofday-function", + "name": "LIBC_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", + "help": "Enables performance-optimized implementations of memory and string functions\nwhen handling misaligned memory.\n\nThis increases the image size by ~1000 bytes.\n\nOptimized functions include:\n - memcpy\n - memset\n - memmove\n - str[n]cpy\n - str[n]cmp", + "id": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", + "name": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", + "range": null, + "title": "Use performance-optimized memXXX/strXXX functions on misaligned memory access", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-libc", + "title": "LibC", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Priority used to create new tasks with default pthread parameters.", + "id": "PTHREAD_TASK_PRIO_DEFAULT", + "name": "PTHREAD_TASK_PRIO_DEFAULT", + "range": [ + 0, + 255 + ], + "title": "Default task priority", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Stack size used to create new tasks with default pthread parameters.", + "id": "PTHREAD_TASK_STACK_SIZE_DEFAULT", + "name": "PTHREAD_TASK_STACK_SIZE_DEFAULT", + "range": null, + "title": "Default task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Minimum allowed pthread stack size set in attributes passed to pthread_create", + "id": "PTHREAD_STACK_MIN", + "name": "PTHREAD_STACK_MIN", + "range": null, + "title": "Minimum allowed pthread stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", + "name": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_0", + "name": "PTHREAD_DEFAULT_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_1", + "name": "PTHREAD_DEFAULT_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE", + "help": "The default core to which pthreads are pinned.", + "id": "component-config-pthreads-default-pthread-core-affinity", + "name": "PTHREAD_TASK_CORE_DEFAULT", + "title": "Default pthread core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PTHREAD_TASK_CORE_DEFAULT", + "name": "PTHREAD_TASK_CORE_DEFAULT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The default name of pthreads.", + "id": "PTHREAD_TASK_NAME_DEFAULT", + "name": "PTHREAD_TASK_NAME_DEFAULT", + "range": null, + "title": "Default name of pthreads", + "type": "string" + } + ], + "depends_on": null, + "id": "component-config-pthreads", + "title": "PThreads", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "help": null, + "id": "MMU_PAGE_SIZE_8KB", + "name": "MMU_PAGE_SIZE_8KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_16KB", + "name": "MMU_PAGE_SIZE_16KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_32KB", + "name": "MMU_PAGE_SIZE_32KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_64KB", + "name": "MMU_PAGE_SIZE_64KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_MODE", + "name": "MMU_PAGE_MODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE", + "name": "MMU_PAGE_SIZE", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-soc-settings-mmu-config", + "title": "MMU Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-soc-settings", + "title": "SoC Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When this option is selected, the patch will be enabled for XMC.\nFollow the recommended flow by XMC for better stability.\n\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.", + "id": "SPI_FLASH_BROWNOUT_RESET_XMC", + "name": "SPI_FLASH_BROWNOUT_RESET_XMC", + "range": null, + "title": "Enable sending reset when brownout for XMC flash chips", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", + "id": "SPI_FLASH_BROWNOUT_RESET", + "name": "SPI_FLASH_BROWNOUT_RESET", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout", + "title": "SPI Flash behavior when brownout", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Invisible for users.", + "id": "SPI_FLASH_UNDER_HIGH_FREQ", + "name": "SPI_FLASH_UNDER_HIGH_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_ENA", + "name": "SPI_FLASH_HPM_ENA", + "range": null, + "title": "Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_AUTO", + "name": "SPI_FLASH_HPM_AUTO", + "range": null, + "title": "Auto (Not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DIS", + "name": "SPI_FLASH_HPM_DIS", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "(IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32P4) && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-", + "name": "SPI_FLASH_HPM", + "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", + "id": "SPI_FLASH_HPM_ON", + "name": "SPI_FLASH_HPM_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_AUTO", + "name": "SPI_FLASH_HPM_DC_AUTO", + "range": null, + "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_DISABLE", + "name": "SPI_FLASH_HPM_DC_DISABLE", + "range": null, + "title": "Disable (READ DOCS FIRST)", + "type": "bool" + } + ], + "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-", + "name": "SPI_FLASH_HPM_DC", + "title": "Support HPM using DC (READ DOCS FIRST)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", + "id": "SPI_FLASH_HPM_DC_ON", + "name": "SPI_FLASH_HPM_DC_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", + "id": "SPI_FLASH_AUTO_SUSPEND", + "name": "SPI_FLASH_AUTO_SUSPEND", + "range": null, + "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", + "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "range": [ + 20, + 100 + ], + "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_TSUS_TRES_SEPERATE_CTR && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Trs parameter. Trs means CS Latency Between Resume And Next Suspend.\nYou can refer to the chapter of AC CHARACTERISTICS of flash datasheet.\nFor high-performance scenarios, some flash chips allow this set value to be smaller than the\ngiven value in the datasheet without causing errors in the flash state machine.\nWhen you have any related needs, please contact espressif business team.", + "id": "SPI_FLASH_SUSPEND_TRS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TRS_VAL_US", + "range": null, + "title": "SPI flash tRS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", + "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "range": null, + "title": "Enable XMC-C series flash chip suspend feature anyway", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Flash suspend has a defect on ESP32C6 until v0.2 and ESP32H2 until v1.2. If you already use suspend\nfeature for mass production, you can enable this for bypassing check after knowing the risk.\nBut if you are new users, or developing new applications, or producing a new batch,\nplease DO NOT enable this config option.\n\nFor more information, please refer to errata or connect to Espressif business support team.", + "id": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", + "range": null, + "title": "Enable chip suspend feature on c6 or h2 anyway (DO NOT ENABLE FOR NEW USERS OR APPLICATIONS)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && IDF_EXPERIMENTAL_FEATURES && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this config will disable auto-resume from hardware. Thus the software will resume the chip\nafter any higher priority task/interrupt which suspend the chip. The benefit is that the suspend-resume\nwill not disturb the higher priority task and interrupt.\n\nThis currently is only valid on single core chip.", + "id": "SPI_FLASH_SOFTWARE_RESUME", + "name": "SPI_FLASH_SOFTWARE_RESUME", + "range": null, + "title": "Resume flash program/erase form suspend state by software control", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Disable freertos task scheduler when CONFIG_SPI_FLASH_AUTO_SUSPEND is enabled.\nThus only interrupt can trigger a suspend. When SPI_FLASH_AUTO_SUSPEND is enabled,\ndefault behavior is not disable the task scheduler, so both interrupt and high priority\ntask can suspend the erase/program operation. When this option is enabled, task\nscheduler is disabled, only interrupt can suspend erase/program operation.", + "id": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", + "name": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", + "range": null, + "title": "Disable task scheduler when suspend is enabled when SPI1 operation is ongoing", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Majority flash supports to use flash register to judge if flash suspend status is\ndone or not. So enable this config, the behavior would use flash register WIP bit to judge\nwhether suspend is valid instead of waiting for a specific long time, which can save a\nlot of time and benefit for performance improvement.", + "id": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", + "name": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", + "range": null, + "title": "Check flash status automatically after flash suspend", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When disabled, certain functions in `spi_flash` component will be placed into Flash memory\ninstead of IRAM. Disabling this option will save almost 10KB of IRAM depending on which\nfunctions are used.\n\nWhen enabled, these functions will be placed in internal RAM, with better performance.\n\nFor more information please refer to programming guide.", + "id": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "name": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "range": null, + "title": "Place spi_flash operation functions into IRAM", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first-", + "title": "Optional and Experimental Features (READ DOCS FIRST)", + "type": "menu" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration", + "title": "Main Flash configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is enabled, if SPI flash write verification fails then a log error line\nwill be written with the address, expected & actual values. This can be useful when\ndebugging hardware SPI flash problems.", + "id": "SPI_FLASH_LOG_FAILED_WRITE", + "name": "SPI_FLASH_LOG_FAILED_WRITE", + "range": null, + "title": "Log errors if verification fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\nones will log a warning. Such writes will not result in the requested data appearing identically\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\nAfter erasing, individual bits can only be written from one to zero.\n\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\nSuch software will log spurious warnings if this option is enabled.", + "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "range": null, + "title": "Log warning if writing zero bits to ones", + "type": "bool" + } + ], + "depends_on": "!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this option is enabled, any time SPI flash is written then the data will be read\nback and verified. This can catch hardware problems with SPI flash, or flash which\nwas not erased before verification.\n\nThis will slightly influence the write performance.", + "id": "SPI_FLASH_VERIFY_WRITE", + "name": "SPI_FLASH_VERIFY_WRITE", + "range": null, + "title": "Verify SPI flash writes", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option enables the following APIs:\n\n- esp_flash_reset_counters\n- esp_flash_dump_counters\n- esp_flash_get_counters\n\nThese APIs may be used to collect performance data for spi_flash APIs\nand to help understand behaviour of libraries which use SPI flash.", + "id": "SPI_FLASH_ENABLE_COUNTERS", + "name": "SPI_FLASH_ENABLE_COUNTERS", + "range": null, + "title": "Enable operation counters", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option should be enabled, if any one of the following is true: (1) need to write\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\nSPI flash chip is manufactured by ISSI.", + "id": "SPI_FLASH_ROM_DRIVER_PATCH", + "name": "SPI_FLASH_ROM_DRIVER_PATCH", + "range": null, + "title": "Enable SPI flash ROM driver patched functions", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_SPI_FLASH && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this flag to use new SPI flash driver functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nBut you can use all of our flash features.\n\nIf making this as \"y\" in your project, you will increase free IRAM.\nBut you may miss out on some flash features and support for new flash chips.\n\nCurrently the ROM cannot support the following features:\n\n- SPI_FLASH_AUTO_SUSPEND (C3, S3)", + "id": "SPI_FLASH_ROM_IMPL", + "name": "SPI_FLASH_ROM_IMPL", + "range": null, + "title": "Use esp_flash implementation in ROM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "range": null, + "title": "Aborts", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "range": null, + "title": "Fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "range": null, + "title": "Allowed", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI flash APIs can optionally abort or return a failure code\nif erasing or writing addresses that fall at the beginning\nof flash (covering the bootloader and partition table) or that\noverlap the app partition that contains the running app.\n\nIt is not recommended to ever write to these regions from an IDF app,\nand this check prevents logic errors or corrupted firmware memory from\ndamaging these regions.\n\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\nROM functions. These functions should not be called directly from IDF\napplications.", + "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions", + "name": "SPI_FLASH_DANGEROUS_WRITE", + "title": "Writing to dangerous flash regions", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Each SPI bus needs a lock for arbitration among devices. This allows multiple\ndevices on a same bus, but may reduce the speed of esp_flash driver access to the\nmain flash chip.\n\nIf you only need to use esp_flash driver to access the main flash chip, disable\nthis option, and the lock will be bypassed on SPI1 bus. Otherwise if extra devices\nare needed to attach to SPI1 bus, enable this option.", + "id": "SPI_FLASH_SHARE_SPI1_BUS", + "name": "SPI_FLASH_SHARE_SPI1_BUS", + "range": null, + "title": "Support other devices attached to SPI1 bus", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Some flash chips can have very high \"max\" erase times, especially for block erase (32KB or 64KB).\nThis option allows to bypass \"block erase\" and always do sector erase commands.\nThis will be much slower overall in most cases, but improves latency for other code to run.", + "id": "SPI_FLASH_BYPASS_BLOCK_ERASE", + "name": "SPI_FLASH_BYPASS_BLOCK_ERASE", + "range": null, + "title": "Bypass a block erase and always do sector erase", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If a duration of one erase command is large\nthen it will yield CPUs after finishing a current command.", + "id": "SPI_FLASH_ERASE_YIELD_DURATION_MS", + "name": "SPI_FLASH_ERASE_YIELD_DURATION_MS", + "range": null, + "title": "Duration of erasing to yield CPUs (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Defines how many ticks will be before returning to continue a erasing.", + "id": "SPI_FLASH_ERASE_YIELD_TICKS", + "name": "SPI_FLASH_ERASE_YIELD_TICKS", + "range": null, + "title": "CPU release time (tick) for an erase operation", + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This allows to yield the CPUs between erase commands.\nPrevents starvation of other tasks.\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\nwatchdog timeout.\nFor more information, please check `SPI Flash API` reference documentation\nunder section `OS Function`.", + "id": "SPI_FLASH_YIELD_DURING_ERASE", + "name": "SPI_FLASH_YIELD_DURING_ERASE", + "range": null, + "title": "Enables yield operation during flash erase", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Flash write is broken down in terms of multiple (smaller) write operations.\nThis configuration options helps to set individual write chunk size, smaller\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\ndisabled for shorter duration.", + "id": "SPI_FLASH_WRITE_CHUNK_SIZE", + "name": "SPI_FLASH_WRITE_CHUNK_SIZE", + "range": [ + 256, + 8192 + ], + "title": "Flash write chunk size", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI Flash driver uses the flash size configured in bootloader header by default.\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\nthe app header if the size in the bootloader header is incorrect.", + "id": "SPI_FLASH_SIZE_OVERRIDE", + "name": "SPI_FLASH_SIZE_OVERRIDE", + "range": null, + "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", + "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "range": null, + "title": "Flash timeout checkout disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option allows the chip driver list to be customized, instead of using the default list provided by\nESP-IDF.\n\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\n`default_registered_chips` structure must be provided by the user.\n\nSee example: custom_chip_driver under examples/storage for more details.", + "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "range": null, + "title": "Override default chip driver list", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of ISSI chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "range": null, + "title": "ISSI", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_MXIC_CHIP", + "name": "SPI_FLASH_SUPPORT_MXIC_CHIP", + "range": null, + "title": "MXIC", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\nmode.\n\nThis adds support for variant chips, however will extend detecting time and image\nsize. Note that the default chip driver supports the GD chips with product ID\n60H.", + "id": "SPI_FLASH_SUPPORT_GD_CHIP", + "name": "SPI_FLASH_SUPPORT_GD_CHIP", + "range": null, + "title": "GigaDevice", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of Winbond chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_WINBOND_CHIP", + "name": "SPI_FLASH_SUPPORT_WINBOND_CHIP", + "range": null, + "title": "Winbond", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of BOYA chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_BOYA_CHIP", + "name": "SPI_FLASH_SUPPORT_BOYA_CHIP", + "range": null, + "title": "BOYA", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of TH chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_TH_CHIP", + "name": "SPI_FLASH_SUPPORT_TH_CHIP", + "range": null, + "title": "TH", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this to support auto detection of Octal MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "name": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "range": null, + "title": "mxic (opi)", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver-auto-detect-flash-chips", + "title": "Auto-detect flash chips", + "type": "menu" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option enables flash read/write operations to encrypted partition/s. This option\nis kept enabled irrespective of state of flash encryption feature. However, in case\napplication is not using flash encryption feature and is in need of some additional\nmemory from IRAM region (~1KB) then this config can be disabled.", + "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "range": null, + "title": "Enable encrypted partition read/write operations", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver", + "title": "SPI Flash driver", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "By enabling this option, ESP-IDF experimental feature options will be visible.\n\nNote you should still enable a certain experimental feature option to use it, and you\nshould read the corresponding risk warning and known issue list carefully.\n\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS\n- CONFIG_LIBC_PICOLIBC", + "id": "IDF_EXPERIMENTAL_FEATURES", + "name": "IDF_EXPERIMENTAL_FEATURES", + "range": null, + "title": "Make experimental features visible", + "type": "bool" + } +] \ No newline at end of file diff --git a/build/config/sdkconfig.cmake b/build/config/sdkconfig.cmake new file mode 100644 index 0000000..0e2bca7 --- /dev/null +++ b/build/config/sdkconfig.cmake @@ -0,0 +1,1160 @@ +# + # Automatically generated file. DO NOT EDIT. + # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file + # +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_PHY_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_GDMA_SUPPORTED "y") +set(CONFIG_SOC_UHCI_SUPPORTED "y") +set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_CAM_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED "y") +set(CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") +set(CONFIG_SOC_CACHE_SUPPORT_WRAP "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_ULP_FSM_SUPPORTED "y") +set(CONFIG_SOC_RISCV_COPROC_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_USB_OTG_SUPPORTED "y") +set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") +set(CONFIG_SOC_CCOMP_TIMER_SUPPORTED "y") +set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") +set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") +set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_SDMMC_HOST_SUPPORTED "y") +set(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_MEM_SUPPORTED "y") +set(CONFIG_SOC_PSRAM_DMA_CAPABLE "y") +set(CONFIG_SOC_XT_WDT_SUPPORTED "y") +set(CONFIG_SOC_I2S_SUPPORTED "y") +set(CONFIG_SOC_RMT_SUPPORTED "y") +set(CONFIG_SOC_SDM_SUPPORTED "y") +set(CONFIG_SOC_GPSPI_SUPPORTED "y") +set(CONFIG_SOC_LEDC_SUPPORTED "y") +set(CONFIG_SOC_I2C_SUPPORTED "y") +set(CONFIG_SOC_SYSTIMER_SUPPORTED "y") +set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") +set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_AES_SUPPORTED "y") +set(CONFIG_SOC_MPI_SUPPORTED "y") +set(CONFIG_SOC_SHA_SUPPORTED "y") +set(CONFIG_SOC_HMAC_SUPPORTED "y") +set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_MEMPROT_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_BOD_SUPPORTED "y") +set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") +set(CONFIG_SOC_MPU_SUPPORTED "y") +set(CONFIG_SOC_WDT_SUPPORTED "y") +set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") +set(CONFIG_SOC_RNG_SUPPORTED "y") +set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT "y") +set(CONFIG_SOC_PM_SUPPORTED "y") +set(CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG "y") +set(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_ARBITER_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") +set(CONFIG_SOC_ADC_MONITOR_SUPPORTED "y") +set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") +set(CONFIG_SOC_ADC_PERIPH_NUM "2") +set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "10") +set(CONFIG_SOC_ADC_ATTEN_NUM "4") +set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "2") +set(CONFIG_SOC_ADC_PATT_LEN_MAX "24") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") +set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_APB_BACKUP_DMA "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED "y") +set(CONFIG_SOC_CACHE_FREEZE_SUPPORTED "y") +set(CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC "y") +set(CONFIG_SOC_CPU_CORES_NUM "2") +set(CONFIG_SOC_CPU_INTR_NUM "32") +set(CONFIG_SOC_CPU_HAS_FPU "y") +set(CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES "y") +set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x40") +set(CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT "16") +set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "4096") +set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") +set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") +set(CONFIG_SOC_AHB_GDMA_VERSION "1") +set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP "5") +set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "5") +set(CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "49") +set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") +set(CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT "y") +set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") +set(CONFIG_SOC_GPIO_VALID_GPIO_MASK "0x1ffffffffffff") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "48") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "48") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0x1fffffc000000") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") +set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") +set(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") +set(CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE "y") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_HP_I2C_NUM "2") +set(CONFIG_SOC_I2C_FIFO_LEN "32") +set(CONFIG_SOC_I2C_CMD_REG_NUM "8") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") +set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") +set(CONFIG_SOC_I2C_SUPPORT_RTC "y") +set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") +set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") +set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") +set(CONFIG_SOC_I2S_NUM "2") +set(CONFIG_SOC_I2S_HW_VERSION_2 "y") +set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PLL_F160M "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM2PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_RX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM2PCM "y") +set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "2") +set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "4") +set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_LEDC_TIMER_NUM "4") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "14") +set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") +set(CONFIG_SOC_MCPWM_GROUPS "2") +set(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR "2") +set(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP "y") +set(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER "3") +set(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP "3") +set(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE "y") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") +set(CONFIG_SOC_MMU_PERIPH_NUM "1") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_PCNT_GROUPS "1") +set(CONFIG_SOC_PCNT_UNITS_PER_GROUP "4") +set(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT "2") +set(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT "2") +set(CONFIG_SOC_RMT_GROUPS "1") +set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "4") +set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "4") +set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") +set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") +set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") +set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") +set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") +set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") +set(CONFIG_SOC_RMT_SUPPORT_APB "y") +set(CONFIG_SOC_RMT_SUPPORT_DMA "y") +set(CONFIG_SOC_LCD_I80_SUPPORTED "y") +set(CONFIG_SOC_LCD_RGB_SUPPORTED "y") +set(CONFIG_SOC_LCD_I80_BUSES "1") +set(CONFIG_SOC_LCD_RGB_PANELS "1") +set(CONFIG_SOC_LCD_I80_BUS_WIDTH "16") +set(CONFIG_SOC_LCD_RGB_DATA_WIDTH "16") +set(CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV "y") +set(CONFIG_SOC_LCDCAM_I80_NUM_BUSES "1") +set(CONFIG_SOC_LCDCAM_I80_BUS_WIDTH "16") +set(CONFIG_SOC_LCDCAM_RGB_NUM_PANELS "1") +set(CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH "16") +set(CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH "128") +set(CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM "549") +set(CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH "128") +set(CONFIG_SOC_RTCIO_PIN_COUNT "22") +set(CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED "y") +set(CONFIG_SOC_RTCIO_HOLD_SUPPORTED "y") +set(CONFIG_SOC_RTCIO_WAKE_SUPPORTED "y") +set(CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT "y") +set(CONFIG_SOC_SDM_GROUPS "1") +set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "8") +set(CONFIG_SOC_SDM_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "3") +set(CONFIG_SOC_SPI_MAX_CS_NUM "6") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") +set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") +set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") +set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") +set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") +set(CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT "y") +set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") +set(CONFIG_SOC_SPI_SUPPORT_OCT "y") +set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") +set(CONFIG_SOC_SPI_SCT_REG_NUM "14") +set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") +set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_SPIRAM_SUPPORTED "y") +set(CONFIG_SOC_SPIRAM_XIP_SUPPORTED "y") +set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") +set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") +set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") +set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") +set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") +set(CONFIG_SOC_TIMER_GROUPS "2") +set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "2") +set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") +set(CONFIG_SOC_TIMER_GROUP_SUPPORT_APB "y") +set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "4") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") +set(CONFIG_SOC_TOUCH_SENSOR_VERSION "2") +set(CONFIG_SOC_TOUCH_SENSOR_NUM "15") +set(CONFIG_SOC_TOUCH_MIN_CHAN_ID "1") +set(CONFIG_SOC_TOUCH_MAX_CHAN_ID "14") +set(CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK "y") +set(CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP "y") +set(CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF "y") +set(CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING "y") +set(CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN "y") +set(CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM "3") +set(CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM "1") +set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") +set(CONFIG_SOC_TWAI_MASK_FILTER_NUM "1") +set(CONFIG_SOC_TWAI_CLK_SUPPORT_APB "y") +set(CONFIG_SOC_TWAI_BRP_MIN "2") +set(CONFIG_SOC_TWAI_BRP_MAX "16384") +set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "3") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") +set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") +set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") +set(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE "y") +set(CONFIG_SOC_UHCI_NUM "1") +set(CONFIG_SOC_USB_OTG_PERIPH_NUM "1") +set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") +set(CONFIG_SOC_SHA_SUPPORT_DMA "y") +set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") +set(CONFIG_SOC_SHA_GDMA "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA224 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA384 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_224 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_256 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512_T "y") +set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "4096") +set(CONFIG_SOC_AES_SUPPORT_DMA "y") +set(CONFIG_SOC_AES_GDMA "y") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +set(CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") +set(CONFIG_SOC_PM_SUPPORT_TAGMEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MAC_BB_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED "y") +set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "y") +set(CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL "y") +set(CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA "y") +set(CONFIG_SOC_PM_MODEM_PD_BY_SW "y") +set(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED "y") +set(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 "y") +set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") +set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") +set(CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2 "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE "y") +set(CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE "y") +set(CONFIG_SOC_EFUSE_HARD_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") +set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") +set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") +set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") +set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") +set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") +set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") +set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "64") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") +set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256 "y") +set(CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE "16") +set(CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE "256") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +set(CONFIG_SOC_MAC_BB_PD_MEM_SIZE "192") +set(CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH "12") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") +set(CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY "y") +set(CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP "y") +set(CONFIG_SOC_COEX_HW_PTI "y") +set(CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE "y") +set(CONFIG_SOC_SDMMC_USE_GPIO_MATRIX "y") +set(CONFIG_SOC_SDMMC_NUM_SLOTS "2") +set(CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK "y") +set(CONFIG_SOC_SDMMC_DELAY_PHASE_NUM "4") +set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") +set(CONFIG_SOC_WIFI_HW_TSF "y") +set(CONFIG_SOC_WIFI_FTM_SUPPORT "y") +set(CONFIG_SOC_WIFI_GCMP_SUPPORT "y") +set(CONFIG_SOC_WIFI_WAPI_SUPPORT "y") +set(CONFIG_SOC_WIFI_CSI_SUPPORT "y") +set(CONFIG_SOC_WIFI_MESH_SUPPORT "y") +set(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW "y") +set(CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND "y") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_BLE_50_SUPPORTED "y") +set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_ULP_HAS_ADC "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV "y") +set(CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM "1") +set(CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX "16") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TOOLCHAIN "gcc") +set(CONFIG_IDF_TOOLCHAIN_GCC "y") +set(CONFIG_IDF_TARGET_ARCH_XTENSA "y") +set(CONFIG_IDF_TARGET_ARCH "xtensa") +set(CONFIG_IDF_TARGET "esp32s3") +set(CONFIG_IDF_INIT_VERSION "5.5.1") +set(CONFIG_IDF_TARGET_ESP32S3 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x9") +set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") +set(CONFIG_APP_BUILD_TYPE_RAM "") +set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") +set(CONFIG_APP_BUILD_BOOTLOADER "y") +set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") +set(CONFIG_APP_REPRODUCIBLE_BUILD "") +set(CONFIG_APP_NO_BLOBS "") +set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_BOOTLOADER_LOG_VERSION_1 "y") +set(CONFIG_BOOTLOADER_LOG_VERSION "1") +set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL "3") +set(CONFIG_BOOTLOADER_LOG_COLORS "") +set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") +set(CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN "y") +set(CONFIG_BOOTLOADER_LOG_MODE_TEXT "y") +set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V "y") +set(CONFIG_BOOTLOADER_FACTORY_RESET "") +set(CONFIG_BOOTLOADER_APP_TEST "") +set(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") +set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS "") +set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0x0") +set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") +set(CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED "y") +set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") +set(CONFIG_APP_COMPILE_TIME_DATE "y") +set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") +set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") +set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") +set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") +set(CONFIG_ESP_ROM_HAS_CRC_LE "y") +set(CONFIG_ESP_ROM_HAS_CRC_BE "y") +set(CONFIG_ESP_ROM_HAS_MZ_CRC32 "y") +set(CONFIG_ESP_ROM_HAS_JPEG_DECODE "y") +set(CONFIG_ESP_ROM_UART_CLK_IS_XTAL "y") +set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") +set(CONFIG_ESP_ROM_USB_OTG_NUM "3") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "4") +set(CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG "y") +set(CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV "y") +set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") +set(CONFIG_ESP_ROM_HAS_HAL_WDT "y") +set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") +set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") +set(CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP "y") +set(CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME "y") +set(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE "y") +set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") +set(CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG "y") +set(CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG "y") +set(CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_HAS_VERSION "y") +set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") +set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") +set(CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") +set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") +set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") +set(CONFIG_ESPTOOLPY_NO_STUB "") +set(CONFIG_ESPTOOLPY_OCT_FLASH "") +set(CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_120M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "80m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") +set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default_reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard_reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "y") +set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") +set(CONFIG_PARTITION_TABLE_CUSTOM "") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA "y") +set(CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_TIMER "") +set(CONFIG_EXAMPLE_WAVE_PERIOD_SEC "2") +set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") +set(CONFIG_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") +set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "y") +set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "") +set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") +set(CONFIG_COMPILER_CXX_EXCEPTIONS "") +set(CONFIG_COMPILER_CXX_RTTI "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") +set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") +set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "y") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") +set(CONFIG_COMPILER_RT_LIB_NAME "gcc") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "y") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") +set(CONFIG_COMPILER_STATIC_ANALYZER "") +set(CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM "y") +set(CONFIG_ADC_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_RMT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_I2S_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_SDM_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_MAX_BLK_LEN "256") +set(CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM "") +set(CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE "") +set(CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 "") +set(CONFIG_ADC_ENABLE_DEBUG_LOG "") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_GPIO_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GPTIMER_ISR_CACHE_SAFE "") +set(CONFIG_GPTIMER_OBJ_CACHE_SAFE "y") +set(CONFIG_GPTIMER_ENABLE_DEBUG_LOG "") +set(CONFIG_I2C_ISR_IRAM_SAFE "") +set(CONFIG_I2C_ENABLE_DEBUG_LOG "") +set(CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 "") +set(CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_I2S_ISR_IRAM_SAFE "") +set(CONFIG_I2S_ENABLE_DEBUG_LOG "") +set(CONFIG_LEDC_CTRL_FUNC_IN_IRAM "") +set(CONFIG_MCPWM_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_MCPWM_ISR_CACHE_SAFE "") +set(CONFIG_MCPWM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_MCPWM_OBJ_CACHE_SAFE "y") +set(CONFIG_MCPWM_ENABLE_DEBUG_LOG "") +set(CONFIG_PCNT_CTRL_FUNC_IN_IRAM "") +set(CONFIG_PCNT_ISR_IRAM_SAFE "") +set(CONFIG_PCNT_ENABLE_DEBUG_LOG "") +set(CONFIG_RMT_ENCODER_FUNC_IN_IRAM "y") +set(CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_RMT_RECV_FUNC_IN_IRAM "") +set(CONFIG_RMT_TX_ISR_CACHE_SAFE "") +set(CONFIG_RMT_RX_ISR_CACHE_SAFE "") +set(CONFIG_RMT_OBJ_CACHE_SAFE "y") +set(CONFIG_RMT_ENABLE_DEBUG_LOG "") +set(CONFIG_RMT_ISR_IRAM_SAFE "") +set(CONFIG_SDM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_SDM_ENABLE_DEBUG_LOG "") +set(CONFIG_SPI_MASTER_IN_IRAM "") +set(CONFIG_SPI_MASTER_ISR_IN_IRAM "y") +set(CONFIG_SPI_SLAVE_IN_IRAM "") +set(CONFIG_SPI_SLAVE_ISR_IN_IRAM "y") +set(CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG "") +set(CONFIG_TWAI_ISR_IN_IRAM "") +set(CONFIG_TWAI_ISR_CACHE_SAFE "") +set(CONFIG_TWAI_ENABLE_DEBUG_LOG "") +set(CONFIG_UART_ISR_IN_IRAM "") +set(CONFIG_UHCI_ISR_HANDLER_IN_IRAM "") +set(CONFIG_UHCI_ISR_CACHE_SAFE "") +set(CONFIG_UHCI_ENABLE_DEBUG_LOG "") +set(CONFIG_USJ_ENABLE_USB_SERIAL_JTAG "y") +set(CONFIG_ESP32S3_REV_MIN_0 "y") +set(CONFIG_ESP32S3_REV_MIN_1 "") +set(CONFIG_ESP32S3_REV_MIN_2 "") +set(CONFIG_ESP32S3_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32S3_REV_MAX_FULL "99") +set(CONFIG_ESP_REV_MAX_FULL "99") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "199") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") +set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") +set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "y") +set(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "2000") +set(CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION "") +set(CONFIG_ESP_SLEEP_DEBUG "") +set(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS "y") +set(CONFIG_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_GDMA_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_GDMA_OBJ_DRAM_SAFE "y") +set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") +set(CONFIG_GDMA_ISR_IRAM_SAFE "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_BROWNOUT_USE_INTR "y") +set(CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM "y") +set(CONFIG_ESP_INTR_IN_IRAM "y") +set(CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS "") +set(CONFIG_PM_SLEEP_FUNC_IN_IRAM "y") +set(CONFIG_PM_ENABLE "") +set(CONFIG_PM_SLP_IRAM_OPT "y") +set(CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP "y") +set(CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP "y") +set(CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH "") +set(CONFIG_ESP_ROM_PRINT_IN_IRAM "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB "y") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE "0x4000") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS "y") +set(CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS "8") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B "") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B "y") +set(CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE "32") +set(CONFIG_ESP32S3_DATA_CACHE_16KB "") +set(CONFIG_ESP32S3_DATA_CACHE_32KB "y") +set(CONFIG_ESP32S3_DATA_CACHE_64KB "") +set(CONFIG_ESP32S3_DATA_CACHE_SIZE "0x8000") +set(CONFIG_ESP32S3_DATA_CACHE_4WAYS "") +set(CONFIG_ESP32S3_DATA_CACHE_8WAYS "y") +set(CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS "8") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_16B "") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_32B "y") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_64B "") +set(CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE "32") +set(CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM "") +set(CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP32S3_TRAX "") +set(CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP_SYSTEM_IN_IRAM "y") +set(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT "") +set(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT "") +set(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS "0") +set(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") +set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") +set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE "y") +set(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK "y") +set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "3584") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 "y") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") +set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") +set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_USB_CDC "") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") +set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") +set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") +set(CONFIG_ESP_CONSOLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_NUM "0") +set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") +set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP_INT_WDT "y") +set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_ESP_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_ESP_TASK_WDT_EN "y") +set(CONFIG_ESP_TASK_WDT_INIT "y") +set(CONFIG_ESP_TASK_WDT_PANIC "") +set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP_PANIC_HANDLER_IRAM "") +set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP_DEBUG_OCDAWARE "y") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") +set(CONFIG_ESP_SYSTEM_BBPLL_RECALIB "y") +set(CONFIG_ESP_IPC_ENABLE "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1280") +set(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY "y") +set(CONFIG_ESP_IPC_ISR_ENABLE "y") +set(CONFIG_ESP_TIMER_IN_IRAM "y") +set(CONFIG_ESP_TIMER_PROFILING "") +set(CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER "y") +set(CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER "y") +set(CONFIG_ESP_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_ESP_TIMER_INTERRUPT_LEVEL "1") +set(CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL "") +set(CONFIG_ESP_TIMER_TASK_AFFINITY "0x0") +set(CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 "y") +set(CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 "y") +set(CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD "") +set(CONFIG_ESP_TIMER_IMPL_SYSTIMER "y") +set(CONFIG_FREERTOS_SMP "") +set(CONFIG_FREERTOS_UNICORE "") +set(CONFIG_FREERTOS_HZ "100") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") +set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") +set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") +set(CONFIG_FREERTOS_USE_IDLE_HOOK "") +set(CONFIG_FREERTOS_USE_TICK_HOOK "") +set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") +set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") +set(CONFIG_FREERTOS_USE_TIMERS "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 "") +set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") +set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") +set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") +set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") +set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") +set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") +set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") +set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") +set(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP "") +set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") +set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") +set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") +set(CONFIG_FREERTOS_FPU_IN_ISR "") +set(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") +set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") +set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") +set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_PORT "y") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") +set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") +set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") +set(CONFIG_FREERTOS_NUMBER_OF_CORES "2") +set(CONFIG_FREERTOS_IN_IRAM "y") +set(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM "y") +set(CONFIG_HAL_ASSERTION_DISABLE "") +set(CONFIG_HAL_ASSERTION_SILENT "") +set(CONFIG_HAL_ASSERTION_ENABLE "") +set(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL "2") +set(CONFIG_HAL_WDT_USE_ROM_IMPL "y") +set(CONFIG_HEAP_POISONING_DISABLED "y") +set(CONFIG_HEAP_POISONING_LIGHT "") +set(CONFIG_HEAP_POISONING_COMPREHENSIVE "") +set(CONFIG_HEAP_TRACING_OFF "y") +set(CONFIG_HEAP_TRACING_STANDALONE "") +set(CONFIG_HEAP_TRACING_TOHOST "") +set(CONFIG_HEAP_USE_HOOKS "") +set(CONFIG_HEAP_TASK_TRACKING "") +set(CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS "") +set(CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH "") +set(CONFIG_LOG_VERSION_1 "y") +set(CONFIG_LOG_VERSION_2 "") +set(CONFIG_LOG_VERSION "1") +set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") +set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") +set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") +set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") +set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") +set(CONFIG_LOG_DEFAULT_LEVEL "3") +set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") +set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") +set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") +set(CONFIG_LOG_MAXIMUM_LEVEL "3") +set(CONFIG_LOG_MASTER_LEVEL "") +set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") +set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") +set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") +set(CONFIG_LOG_COLORS "") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_LOG_MODE_TEXT_EN "y") +set(CONFIG_LOG_MODE_TEXT "y") +set(CONFIG_LOG_IN_IRAM "y") +set(CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC "y") +set(CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC "") +set(CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC "") +set(CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN "y") +set(CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN "16384") +set(CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN "4096") +set(CONFIG_MBEDTLS_DYNAMIC_BUFFER "") +set(CONFIG_MBEDTLS_DEBUG "") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 "") +set(CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH "") +set(CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK "") +set(CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION "") +set(CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE "y") +set(CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT "") +set(CONFIG_MBEDTLS_PKCS7_C "y") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE "y") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL "y") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN "") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE "") +set(CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE "") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST "") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS "200") +set(CONFIG_MBEDTLS_ECP_RESTARTABLE "") +set(CONFIG_MBEDTLS_CMAC_C "") +set(CONFIG_MBEDTLS_HARDWARE_AES "y") +set(CONFIG_MBEDTLS_AES_USE_INTERRUPT "y") +set(CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL "0") +set(CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER "y") +set(CONFIG_MBEDTLS_HARDWARE_MPI "y") +set(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI "") +set(CONFIG_MBEDTLS_MPI_USE_INTERRUPT "y") +set(CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL "0") +set(CONFIG_MBEDTLS_HARDWARE_SHA "y") +set(CONFIG_MBEDTLS_ROM_MD5 "y") +set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN "") +set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY "") +set(CONFIG_MBEDTLS_HAVE_TIME "y") +set(CONFIG_MBEDTLS_PLATFORM_TIME_ALT "") +set(CONFIG_MBEDTLS_HAVE_TIME_DATE "") +set(CONFIG_MBEDTLS_ECDSA_DETERMINISTIC "y") +set(CONFIG_MBEDTLS_SHA1_C "y") +set(CONFIG_MBEDTLS_SHA512_C "y") +set(CONFIG_MBEDTLS_SHA3_C "") +set(CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_SERVER_ONLY "") +set(CONFIG_MBEDTLS_TLS_CLIENT_ONLY "") +set(CONFIG_MBEDTLS_TLS_DISABLED "") +set(CONFIG_MBEDTLS_TLS_SERVER "y") +set(CONFIG_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_ENABLED "y") +set(CONFIG_MBEDTLS_PSK_MODES "") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA "y") +set(CONFIG_MBEDTLS_SSL_RENEGOTIATION "y") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 "y") +set(CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 "") +set(CONFIG_MBEDTLS_SSL_PROTO_DTLS "") +set(CONFIG_MBEDTLS_SSL_ALPN "y") +set(CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_AES_C "y") +set(CONFIG_MBEDTLS_CAMELLIA_C "") +set(CONFIG_MBEDTLS_DES_C "") +set(CONFIG_MBEDTLS_BLOWFISH_C "") +set(CONFIG_MBEDTLS_XTEA_C "") +set(CONFIG_MBEDTLS_CCM_C "y") +set(CONFIG_MBEDTLS_GCM_C "y") +set(CONFIG_MBEDTLS_NIST_KW_C "") +set(CONFIG_MBEDTLS_RIPEMD160_C "") +set(CONFIG_MBEDTLS_PEM_PARSE_C "y") +set(CONFIG_MBEDTLS_PEM_WRITE_C "y") +set(CONFIG_MBEDTLS_X509_CRL_PARSE_C "y") +set(CONFIG_MBEDTLS_X509_CSR_PARSE_C "y") +set(CONFIG_MBEDTLS_ECP_C "y") +set(CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED "y") +set(CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED "y") +set(CONFIG_MBEDTLS_DHM_C "") +set(CONFIG_MBEDTLS_ECDH_C "y") +set(CONFIG_MBEDTLS_ECDSA_C "y") +set(CONFIG_MBEDTLS_ECJPAKE_C "") +set(CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_NIST_OPTIM "y") +set(CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM "") +set(CONFIG_MBEDTLS_POLY1305_C "") +set(CONFIG_MBEDTLS_CHACHA20_C "") +set(CONFIG_MBEDTLS_HKDF_C "") +set(CONFIG_MBEDTLS_THREADING_C "") +set(CONFIG_MBEDTLS_ERROR_STRINGS "y") +set(CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION "") +set(CONFIG_LIBC_NEWLIB "y") +set(CONFIG_LIBC_MISC_IN_IRAM "y") +set(CONFIG_LIBC_LOCKS_PLACE_IN_IRAM "y") +set(CONFIG_LIBC_NEWLIB_NANO_FORMAT "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_HRT "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_NONE "") +set(CONFIG_PTHREAD_TASK_PRIO_DEFAULT "5") +set(CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") +set(CONFIG_PTHREAD_STACK_MIN "768") +set(CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY "y") +set(CONFIG_PTHREAD_DEFAULT_CORE_0 "") +set(CONFIG_PTHREAD_DEFAULT_CORE_1 "") +set(CONFIG_PTHREAD_TASK_CORE_DEFAULT "-1") +set(CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread") +set(CONFIG_MMU_PAGE_SIZE_64KB "y") +set(CONFIG_MMU_PAGE_MODE "64KB") +set(CONFIG_MMU_PAGE_SIZE "0x10000") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") +set(CONFIG_SPI_FLASH_HPM_ENA "") +set(CONFIG_SPI_FLASH_HPM_AUTO "y") +set(CONFIG_SPI_FLASH_HPM_DIS "") +set(CONFIG_SPI_FLASH_HPM_ON "y") +set(CONFIG_SPI_FLASH_HPM_DC_AUTO "y") +set(CONFIG_SPI_FLASH_HPM_DC_DISABLE "") +set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") +set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND "") +set(CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM "y") +set(CONFIG_SPI_FLASH_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_ROM_IMPL "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") +set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") +set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") +set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") +set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") +set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") +set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") +set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") +set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") +set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP "y") +set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_UHCI_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_LCDCAM_SUPPORTED;CONFIG_SOC_LCDCAM_CAM_SUPPORTED;CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED;CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_CACHE_SUPPORT_WRAP;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_RISCV_COPROC_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_USB_OTG_SUPPORTED;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_PSRAM_DMA_CAPABLE;CONFIG_SOC_XT_WDT_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_MEMPROT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_MPU_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_ARBITER_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_DIGI_MONITOR_NUM;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_APB_BACKUP_DMA;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FPU;CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F160M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_SUPPORTS_PCM2PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_SUPPORTS_PDM2PCM;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_APB;CONFIG_SOC_RMT_SUPPORT_DMA;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_LCD_RGB_SUPPORTED;CONFIG_SOC_LCD_I80_BUSES;CONFIG_SOC_LCD_RGB_PANELS;CONFIG_SOC_LCD_I80_BUS_WIDTH;CONFIG_SOC_LCD_RGB_DATA_WIDTH;CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_LCDCAM_I80_NUM_BUSES;CONFIG_SOC_LCDCAM_I80_BUS_WIDTH;CONFIG_SOC_LCDCAM_RGB_NUM_PANELS;CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM;CONFIG_SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_APB;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_SUPPORT_OCT;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPIRAM_XIP_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_APB;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TOUCH_SENSOR_VERSION;CONFIG_SOC_TOUCH_SENSOR_NUM;CONFIG_SOC_TOUCH_MIN_CHAN_ID;CONFIG_SOC_TOUCH_MAX_CHAN_ID;CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK;CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP;CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF;CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING;CONFIG_SOC_TOUCH_SUPPORT_DENOISE_CHAN;CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM;CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED;CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_MASK_FILTER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_APB;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE;CONFIG_SOC_UHCI_NUM;CONFIG_SOC_USB_OTG_PERIPH_NUM;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_SHA_SUPPORT_SHA512_224;CONFIG_SOC_SHA_SUPPORT_SHA512_256;CONFIG_SOC_SHA_SUPPORT_SHA512_T;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_TAGMEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MAC_BB_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_CPU_RETENTION_BY_RTCCNTL;CONFIG_SOC_PM_MODEM_RETENTION_BY_BACKUPDMA;CONFIG_SOC_PM_MODEM_PD_BY_SW;CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED;CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE;CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE;CONFIG_SOC_EFUSE_HARD_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256;CONFIG_SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE;CONFIG_SOC_MEMPROT_MEM_ALIGN_SIZE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_MAC_BB_PD_MEM_SIZE;CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE;CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY;CONFIG_SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM;CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE;CONFIG_SOC_SDMMC_USE_GPIO_MATRIX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_SDMMC_DELAY_PHASE_NUM;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_WIFI_HW_TSF;CONFIG_SOC_WIFI_FTM_SUPPORT;CONFIG_SOC_WIFI_GCMP_SUPPORT;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_WIFI_PHY_NEEDS_USB_WORKAROUND;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV;CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM;CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32S3;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_LOG_VERSION_1;CONFIG_BOOTLOADER_LOG_VERSION;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN;CONFIG_BOOTLOADER_LOG_MODE_TEXT;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_HAS_MZ_CRC32;CONFIG_ESP_ROM_HAS_JPEG_DECODE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG;CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP;CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG;CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG;CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_OCT_FLASH;CONFIG_ESPTOOLPY_FLASH_MODE_AUTO_DETECT;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_120M;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA;CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_TIMER;CONFIG_EXAMPLE_WAVE_PERIOD_SEC;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM;CONFIG_ADC_SUPPRESS_DEPRECATE_WARN;CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_RMT_SUPPRESS_DEPRECATE_WARN;CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_I2S_SUPPRESS_DEPRECATE_WARN;CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN;CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_SDM_SUPPRESS_DEPRECATE_WARN;CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN;CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN;CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM;CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE;CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3;CONFIG_ADC_ENABLE_DEBUG_LOG;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_GPIO_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM;CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_CACHE_SAFE;CONFIG_GPTIMER_ISR_IRAM_SAFE;CONFIG_GPTIMER_OBJ_CACHE_SAFE;CONFIG_GPTIMER_ENABLE_DEBUG_LOG;CONFIG_I2C_ISR_IRAM_SAFE;CONFIG_I2C_ENABLE_DEBUG_LOG;CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2;CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_ENABLE_DEBUG_LOG;CONFIG_LEDC_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_ISR_HANDLER_IN_IRAM;CONFIG_MCPWM_ISR_CACHE_SAFE;CONFIG_MCPWM_ISR_IRAM_SAFE;CONFIG_MCPWM_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_OBJ_CACHE_SAFE;CONFIG_MCPWM_ENABLE_DEBUG_LOG;CONFIG_PCNT_CTRL_FUNC_IN_IRAM;CONFIG_PCNT_ISR_IRAM_SAFE;CONFIG_PCNT_ENABLE_DEBUG_LOG;CONFIG_RMT_ENCODER_FUNC_IN_IRAM;CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM;CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM;CONFIG_RMT_RECV_FUNC_IN_IRAM;CONFIG_RMT_TX_ISR_CACHE_SAFE;CONFIG_RMT_RX_ISR_CACHE_SAFE;CONFIG_RMT_OBJ_CACHE_SAFE;CONFIG_RMT_ENABLE_DEBUG_LOG;CONFIG_RMT_ISR_IRAM_SAFE;CONFIG_SDM_CTRL_FUNC_IN_IRAM;CONFIG_SDM_ENABLE_DEBUG_LOG;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG;CONFIG_TWAI_ISR_IN_IRAM;CONFIG_TWAI_ISR_CACHE_SAFE;CONFIG_TWAI_ENABLE_DEBUG_LOG;CONFIG_UART_ISR_IN_IRAM;CONFIG_UHCI_ISR_HANDLER_IN_IRAM;CONFIG_UHCI_ISR_CACHE_SAFE;CONFIG_UHCI_ENABLE_DEBUG_LOG;CONFIG_USJ_ENABLE_USB_SERIAL_JTAG;CONFIG_ESP32S3_REV_MIN_0;CONFIG_ESP32S3_REV_MIN_1;CONFIG_ESP32S3_REV_MIN_2;CONFIG_ESP32S3_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32S3_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY;CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION;CONFIG_ESP_SLEEP_DEBUG;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES;CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_HANDLER_IN_IRAM;CONFIG_GDMA_OBJ_DRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_40;CONFIG_XTAL_FREQ;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32S3_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32S3_BROWNOUT_DET_LVL;CONFIG_ESP_BROWNOUT_USE_INTR;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM;CONFIG_ESP_INTR_IN_IRAM;CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS;CONFIG_PM_SLEEP_FUNC_IN_IRAM;CONFIG_PM_ENABLE;CONFIG_PM_SLP_IRAM_OPT;CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP;CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU;CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP;CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP;CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_ESP_ROM_PRINT_IN_IRAM;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32S3_INSTRUCTION_CACHE_16KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB;CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE;CONFIG_ESP32S3_INSTRUCTION_CACHE_4WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_8WAYS;CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_16B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_32B;CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE;CONFIG_ESP32S3_DATA_CACHE_16KB;CONFIG_ESP32S3_DATA_CACHE_32KB;CONFIG_ESP32S3_DATA_CACHE_64KB;CONFIG_ESP32S3_DATA_CACHE_SIZE;CONFIG_ESP32S3_DATA_CACHE_4WAYS;CONFIG_ESP32S3_DATA_CACHE_8WAYS;CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS;CONFIG_ESP32S3_DATA_CACHE_LINE_16B;CONFIG_ESP32S3_DATA_CACHE_LINE_32B;CONFIG_ESP32S3_DATA_CACHE_LINE_64B;CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE;CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM;CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32S3_TRAX;CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_IN_IRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE;CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_CDC;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_TASK_WDT_INIT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP32S3_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_SYSTEM_BBPLL_RECALIB;CONFIG_ESP_IPC_ENABLE;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_IPC_ISR_ENABLE;CONFIG_ESP_TIMER_IN_IRAM;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER;CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_INTERRUPT_LEVEL;CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL;CONFIG_ESP_TIMER_TASK_AFFINITY;CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0;CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0;CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD;CONFIG_ESP_TIMER_IMPL_SYSTIMER;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_FREERTOS_IN_IRAM;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_ASSERTION_ENABLE;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_HEAP_POISONING_DISABLED;CONFIG_HEAP_POISONING_LIGHT;CONFIG_HEAP_POISONING_COMPREHENSIVE;CONFIG_HEAP_TRACING_OFF;CONFIG_HEAP_TRACING_STANDALONE;CONFIG_HEAP_TRACING_TOHOST;CONFIG_HEAP_USE_HOOKS;CONFIG_HEAP_TASK_TRACKING;CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS;CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH;CONFIG_LOG_VERSION_1;CONFIG_LOG_VERSION_2;CONFIG_LOG_VERSION;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LOG_MODE_TEXT_EN;CONFIG_LOG_MODE_TEXT;CONFIG_LOG_IN_IRAM;CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DYNAMIC_BUFFER;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_SSL_PROTO_TLS1_3;CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH;CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK;CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION;CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE;CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT;CONFIG_MBEDTLS_PKCS7_C;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE;CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_AES_USE_INTERRUPT;CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL;CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;CONFIG_MBEDTLS_MPI_USE_INTERRUPT;CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_ROM_MD5;CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN;CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_PLATFORM_TIME_ALT;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_ECDSA_DETERMINISTIC;CONFIG_MBEDTLS_SHA1_C;CONFIG_MBEDTLS_SHA512_C;CONFIG_MBEDTLS_SHA3_C;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_NIST_KW_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED;CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED;CONFIG_MBEDTLS_DHM_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECJPAKE_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM;CONFIG_MBEDTLS_POLY1305_C;CONFIG_MBEDTLS_CHACHA20_C;CONFIG_MBEDTLS_HKDF_C;CONFIG_MBEDTLS_THREADING_C;CONFIG_MBEDTLS_ERROR_STRINGS;CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION;CONFIG_LIBC_NEWLIB;CONFIG_LIBC_MISC_IN_IRAM;CONFIG_LIBC_LOCKS_PLACE_IN_IRAM;CONFIG_LIBC_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC;CONFIG_LIBC_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER;CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_NONE;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE;CONFIG_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_PTHREAD_STACK_MIN;CONFIG_ESP32_PTHREAD_STACK_MIN;CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY;CONFIG_PTHREAD_DEFAULT_CORE_0;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0;CONFIG_PTHREAD_DEFAULT_CORE_1;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1;CONFIG_PTHREAD_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_HPM_ENA;CONFIG_SPI_FLASH_HPM_AUTO;CONFIG_SPI_FLASH_HPM_DIS;CONFIG_SPI_FLASH_HPM_ON;CONFIG_SPI_FLASH_HPM_DC_AUTO;CONFIG_SPI_FLASH_HPM_DC_DISABLE;CONFIG_SPI_FLASH_AUTO_SUSPEND;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND;CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_OPI_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_IDF_EXPERIMENTAL_FEATURES) +# List of deprecated options for backward compatibility +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_NO_BLOBS "") +set(CONFIG_APP_ROLLBACK_ENABLE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "y") +set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL "3") +set(CONFIG_FLASH_ENCRYPTION_ENABLED "") +set(CONFIG_FLASHMODE_QIO "") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "y") +set(CONFIG_FLASHMODE_DOUT "") +set(CONFIG_MONITOR_BAUD "115200") +set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "y") +set(CONFIG_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "y") +set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") +set(CONFIG_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_CXX_EXCEPTIONS "") +set(CONFIG_STACK_CHECK_NONE "y") +set(CONFIG_STACK_CHECK_NORM "") +set(CONFIG_STACK_CHECK_STRONG "") +set(CONFIG_STACK_CHECK_ALL "") +set(CONFIG_WARN_WRITE_STRINGS "") +set(CONFIG_GPTIMER_ISR_IRAM_SAFE "") +set(CONFIG_MCPWM_ISR_IRAM_SAFE "") +set(CONFIG_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_ESP32S3_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP32S3_BROWNOUT_DET_LVL "7") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU "y") +set(CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP "y") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 "y") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 "") +set(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_MAIN_TASK_STACK_SIZE "3584") +set(CONFIG_CONSOLE_UART_DEFAULT "y") +set(CONFIG_CONSOLE_UART_CUSTOM "") +set(CONFIG_CONSOLE_UART_NONE "") +set(CONFIG_ESP_CONSOLE_UART_NONE "") +set(CONFIG_CONSOLE_UART "y") +set(CONFIG_CONSOLE_UART_NUM "0") +set(CONFIG_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_INT_WDT "y") +set(CONFIG_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_TASK_WDT "y") +set(CONFIG_ESP_TASK_WDT "y") +set(CONFIG_TASK_WDT_PANIC "") +set(CONFIG_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP32_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP32S3_DEBUG_OCDAWARE "y") +set(CONFIG_IPC_TASK_STACK_SIZE "1280") +set(CONFIG_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_TIMER_TASK_PRIORITY "1") +set(CONFIG_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_TIMER_QUEUE_LENGTH "10") +set(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK "") +set(CONFIG_HAL_ASSERTION_SILIENT "") +set(CONFIG_NEWLIB_NANO_FORMAT "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER "y") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT "5") +set(CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") +set(CONFIG_ESP32_PTHREAD_STACK_MIN "768") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY "y") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 "") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 "") +set(CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT "-1") +set(CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT "pthread") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") diff --git a/build/config/sdkconfig.h b/build/config/sdkconfig.h new file mode 100644 index 0000000..340c761 --- /dev/null +++ b/build/config/sdkconfig.h @@ -0,0 +1,812 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header + */ +#pragma once +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_UART_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_GDMA_SUPPORTED 1 +#define CONFIG_SOC_UHCI_SUPPORTED 1 +#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_LCDCAM_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_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 +#define CONFIG_SOC_CACHE_SUPPORT_WRAP 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_RISCV_COPROC_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_USB_OTG_SUPPORTED 1 +#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 +#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 +#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_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_PSRAM_DMA_CAPABLE 1 +#define CONFIG_SOC_XT_WDT_SUPPORTED 1 +#define CONFIG_SOC_I2S_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_SYSTIMER_SUPPORTED 1 +#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_HMAC_SUPPORTED 1 +#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_MEMPROT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_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_SIMD_INSTRUCTION_SUPPORTED 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_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_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_IIR_FILTER_NUM 2 +#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_CALIBRATION_V1_SUPPORTED 1 +#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_APB_BACKUP_DMA 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED 1 +#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 +#define CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC 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_SIMD_PREFERRED_DATA_ALIGNMENT 16 +#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_AHB_GDMA_VERSION 1 +#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP 5 +#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 5 +#define CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 49 +#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 +#define CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1 +#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 +#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_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 +#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 +#define CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE 1 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 2 +#define CONFIG_SOC_I2C_FIFO_LEN 32 +#define CONFIG_SOC_I2C_CMD_REG_NUM 8 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 +#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 +#define CONFIG_SOC_I2C_SUPPORT_RTC 1 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 +#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 +#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 +#define CONFIG_SOC_I2S_NUM 2 +#define CONFIG_SOC_I2S_HW_VERSION_2 1 +#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM 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_I2S_SUPPORTS_TDM 1 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_XTAL_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_LEDC_SUPPORT_FADE_STOP 1 +#define CONFIG_SOC_MCPWM_GROUPS 2 +#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2 +#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1 +#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3 +#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3 +#define CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE 1 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 +#define CONFIG_SOC_MMU_PERIPH_NUM 1 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_PCNT_GROUPS 1 +#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 4 +#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2 +#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2 +#define CONFIG_SOC_RMT_GROUPS 1 +#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 4 +#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 4 +#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 +#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 +#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 +#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 +#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 +#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 +#define CONFIG_SOC_RMT_SUPPORT_APB 1 +#define CONFIG_SOC_RMT_SUPPORT_DMA 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_LCD_RGB_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_BUSES 1 +#define CONFIG_SOC_LCD_RGB_PANELS 1 +#define CONFIG_SOC_LCD_I80_BUS_WIDTH 16 +#define CONFIG_SOC_LCD_RGB_DATA_WIDTH 16 +#define CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_SOC_LCDCAM_I80_NUM_BUSES 1 +#define CONFIG_SOC_LCDCAM_I80_BUS_WIDTH 16 +#define CONFIG_SOC_LCDCAM_RGB_NUM_PANELS 1 +#define CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH 16 +#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_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_LP_IO_CLOCK_IS_INDEPENDENT 1 +#define CONFIG_SOC_SDM_GROUPS 1 +#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8 +#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_MAX_CS_NUM 6 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 +#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 +#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 +#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 +#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 +#define CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT 1 +#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 +#define CONFIG_SOC_SPI_SUPPORT_OCT 1 +#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 +#define CONFIG_SOC_SPI_SCT_REG_NUM 14 +#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 +#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA +#define CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPIRAM_XIP_SUPPORTED 1 +#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 +#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 +#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 +#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 +#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 +#define CONFIG_SOC_TIMER_GROUPS 2 +#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2 +#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 +#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1 +#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4 +#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_SENSOR_NUM 15 +#define CONFIG_SOC_TOUCH_MIN_CHAN_ID 1 +#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 14 +#define CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK 1 +#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 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_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED 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_TWAI_CLK_SUPPORT_APB 1 +#define CONFIG_SOC_TWAI_BRP_MIN 2 +#define CONFIG_SOC_TWAI_BRP_MAX 16384 +#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 +#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 +#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 +#define CONFIG_SOC_UHCI_NUM 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_GDMA 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA224 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_SHA_SUPPORT_SHA512_224 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512_T 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_DMA 1 +#define CONFIG_SOC_AES_GDMA 1 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#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_WIFI_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 +#define CONFIG_SOC_PM_SUPPORT_TAGMEM_PD 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_MAC_BB_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 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_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_CLK_LP_FAST_SUPPORT_XTAL_D2 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_DIS_USB_JTAG 1 +#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 +#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 +#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 +#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 +#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 +#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 +#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_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_MAC_BB_PD_MEM_SIZE 192 +#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_AUTO_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 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_COEX_HW_PTI 1 +#define CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE 1 +#define CONFIG_SOC_SDMMC_USE_GPIO_MATRIX 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#define CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK 1 +#define CONFIG_SOC_SDMMC_DELAY_PHASE_NUM 4 +#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_WIFI_GCMP_SUPPORT 1 +#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_WIFI_PHY_NEEDS_USB_WORKAROUND 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BLE_50_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_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV 1 +#define CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM 1 +#define CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX 16 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TOOLCHAIN "gcc" +#define CONFIG_IDF_TOOLCHAIN_GCC 1 +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ARCH "xtensa" +#define CONFIG_IDF_TARGET "esp32s3" +#define CONFIG_IDF_INIT_VERSION "5.5.1" +#define CONFIG_IDF_TARGET_ESP32S3 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0009 +#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 +#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 +#define CONFIG_APP_BUILD_BOOTLOADER 1 +#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 +#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1 +#define CONFIG_BOOTLOADER_PROJECT_VER 1 +#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_VERSION_1 1 +#define CONFIG_BOOTLOADER_LOG_VERSION 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 +#define CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN 1 +#define CONFIG_BOOTLOADER_LOG_MODE_TEXT 1 +#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1 +#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 +#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 +#define CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED 1 +#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 +#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1 +#define CONFIG_APP_COMPILE_TIME_DATE 1 +#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 +#define CONFIG_ESP_ROM_HAS_CRC_LE 1 +#define CONFIG_ESP_ROM_HAS_CRC_BE 1 +#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1 +#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1 +#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1 +#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 +#define CONFIG_ESP_ROM_USB_OTG_NUM 3 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 4 +#define CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG 1 +#define CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV 1 +#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 +#define CONFIG_ESP_ROM_HAS_HAL_WDT 1 +#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 +#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 +#define CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP 1 +#define CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME 1 +#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1 +#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 +#define CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG 1 +#define CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG 1 +#define CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_HAS_VERSION 1 +#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 +#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 +#define CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY 1 +#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 +#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" +#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_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_SINGLE_APP 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA 1 +#define CONFIG_EXAMPLE_WAVE_PERIOD_SEC 2 +#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE 1 +#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 +#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS 1 +#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 +#define CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 256 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_GPTIMER_OBJ_CACHE_SAFE 1 +#define CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_MCPWM_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_MCPWM_OBJ_CACHE_SAFE 1 +#define CONFIG_RMT_ENCODER_FUNC_IN_IRAM 1 +#define CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_RMT_OBJ_CACHE_SAFE 1 +#define CONFIG_SPI_MASTER_ISR_IN_IRAM 1 +#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 1 +#define CONFIG_USJ_ENABLE_USB_SERIAL_JTAG 1 +#define CONFIG_ESP32S3_REV_MIN_0 1 +#define CONFIG_ESP32S3_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32S3_REV_MAX_FULL 99 +#define CONFIG_ESP_REV_MAX_FULL 99 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 199 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU 1 +#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 2000 +#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1 +#define CONFIG_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_GDMA_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_GDMA_OBJ_DRAM_SAFE 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_ESP_BROWNOUT_DET 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 7 +#define CONFIG_ESP_BROWNOUT_USE_INTR 1 +#define CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM 1 +#define CONFIG_ESP_INTR_IN_IRAM 1 +#define CONFIG_PM_SLEEP_FUNC_IN_IRAM 1 +#define CONFIG_PM_SLP_IRAM_OPT 1 +#define CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP 1 +#define CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP 1 +#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 +#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_ESP32S3_TRACEMEM_RESERVE_DRAM 0x0 +#define CONFIG_ESP_SYSTEM_IN_IRAM 1 +#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 +#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 +#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 +#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 1 +#define CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK 1 +#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 +#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 +#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0 +#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 +#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG 1 +#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1 +#define CONFIG_ESP_CONSOLE_UART 1 +#define CONFIG_ESP_CONSOLE_UART_NUM 0 +#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 +#define CONFIG_ESP_INT_WDT 1 +#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 +#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1 +#define CONFIG_ESP_TASK_WDT_EN 1 +#define CONFIG_ESP_TASK_WDT_INIT 1 +#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1 +#define CONFIG_ESP_DEBUG_OCDAWARE 1 +#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1 +#define CONFIG_ESP_SYSTEM_BBPLL_RECALIB 1 +#define CONFIG_ESP_IPC_ENABLE 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1280 +#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1 +#define CONFIG_ESP_IPC_ISR_ENABLE 1 +#define CONFIG_ESP_TIMER_IN_IRAM 1 +#define CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER 1 +#define CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER 1 +#define CONFIG_ESP_TIMER_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_TIMER_INTERRUPT_LEVEL 1 +#define CONFIG_ESP_TIMER_TASK_AFFINITY 0x0 +#define CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 1 +#define CONFIG_ESP_TIMER_IMPL_SYSTIMER 1 +#define CONFIG_FREERTOS_HZ 100 +#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 +#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 +#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +#define CONFIG_FREERTOS_USE_TIMERS 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" +#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 +#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048 +#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 +#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 +#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 +#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 +#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1 +#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 +#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 +#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 +#define CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER 1 +#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 +#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1 +#define CONFIG_FREERTOS_PORT 1 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 +#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 +#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 +#define CONFIG_FREERTOS_NUMBER_OF_CORES 2 +#define CONFIG_FREERTOS_IN_IRAM 1 +#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_WDT_USE_ROM_IMPL 1 +#define CONFIG_HEAP_POISONING_DISABLED 1 +#define CONFIG_HEAP_TRACING_OFF 1 +#define CONFIG_LOG_VERSION_1 1 +#define CONFIG_LOG_VERSION 1 +#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 +#define CONFIG_LOG_MAXIMUM_LEVEL 3 +#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 +#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_LOG_MODE_TEXT_EN 1 +#define CONFIG_LOG_MODE_TEXT 1 +#define CONFIG_LOG_IN_IRAM 1 +#define CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC 1 +#define CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN 1 +#define CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN 16384 +#define CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN 4096 +#define CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE 1 +#define CONFIG_MBEDTLS_PKCS7_C 1 +#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE 1 +#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL 1 +#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS 200 +#define CONFIG_MBEDTLS_HARDWARE_AES 1 +#define CONFIG_MBEDTLS_AES_USE_INTERRUPT 1 +#define CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL 0 +#define CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER 1 +#define CONFIG_MBEDTLS_HARDWARE_MPI 1 +#define CONFIG_MBEDTLS_MPI_USE_INTERRUPT 1 +#define CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL 0 +#define CONFIG_MBEDTLS_HARDWARE_SHA 1 +#define CONFIG_MBEDTLS_ROM_MD5 1 +#define CONFIG_MBEDTLS_HAVE_TIME 1 +#define CONFIG_MBEDTLS_ECDSA_DETERMINISTIC 1 +#define CONFIG_MBEDTLS_SHA1_C 1 +#define CONFIG_MBEDTLS_SHA512_C 1 +#define CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT 1 +#define CONFIG_MBEDTLS_TLS_SERVER 1 +#define CONFIG_MBEDTLS_TLS_CLIENT 1 +#define CONFIG_MBEDTLS_TLS_ENABLED 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_RSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA 1 +#define CONFIG_MBEDTLS_SSL_RENEGOTIATION 1 +#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 1 +#define CONFIG_MBEDTLS_SSL_ALPN 1 +#define CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS 1 +#define CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS 1 +#define CONFIG_MBEDTLS_AES_C 1 +#define CONFIG_MBEDTLS_CCM_C 1 +#define CONFIG_MBEDTLS_GCM_C 1 +#define CONFIG_MBEDTLS_PEM_PARSE_C 1 +#define CONFIG_MBEDTLS_PEM_WRITE_C 1 +#define CONFIG_MBEDTLS_X509_CRL_PARSE_C 1 +#define CONFIG_MBEDTLS_X509_CSR_PARSE_C 1 +#define CONFIG_MBEDTLS_ECP_C 1 +#define CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED 1 +#define CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED 1 +#define CONFIG_MBEDTLS_ECDH_C 1 +#define CONFIG_MBEDTLS_ECDSA_C 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_NIST_OPTIM 1 +#define CONFIG_MBEDTLS_ERROR_STRINGS 1 +#define CONFIG_LIBC_NEWLIB 1 +#define CONFIG_LIBC_MISC_IN_IRAM 1 +#define CONFIG_LIBC_LOCKS_PLACE_IN_IRAM 1 +#define CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT 1 +#define CONFIG_PTHREAD_TASK_PRIO_DEFAULT 5 +#define CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT 3072 +#define CONFIG_PTHREAD_STACK_MIN 768 +#define CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY 1 +#define CONFIG_PTHREAD_TASK_CORE_DEFAULT -1 +#define CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread" +#define CONFIG_MMU_PAGE_SIZE_64KB 1 +#define CONFIG_MMU_PAGE_MODE "64KB" +#define CONFIG_MMU_PAGE_SIZE 0x10000 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 +#define CONFIG_SPI_FLASH_HPM_AUTO 1 +#define CONFIG_SPI_FLASH_HPM_ON 1 +#define CONFIG_SPI_FLASH_HPM_DC_AUTO 1 +#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 +#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 +#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 +#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1 +#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1 +#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20 +#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1 +#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192 +#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED 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_ENABLE_ENCRYPTED_READ_WRITE 1 + +/* List of deprecated options */ +#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART +#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE +#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT +#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM +#define CONFIG_ESP32S3_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_ESP32S3_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 +#define CONFIG_ESP32S3_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE +#define CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 +#define CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ +#define CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES +#define CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY +#define CONFIG_ESP32_PTHREAD_STACK_MIN CONFIG_PTHREAD_STACK_MIN +#define CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT CONFIG_PTHREAD_TASK_CORE_DEFAULT +#define CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT CONFIG_PTHREAD_TASK_NAME_DEFAULT +#define CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT CONFIG_PTHREAD_TASK_PRIO_DEFAULT +#define CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT +#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR CONFIG_ESP_BROWNOUT_USE_INTR +#define CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT +#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1 +#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS +#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE +#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL +#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO +#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE +#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD +#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE +#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL +#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM +#define CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP +#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS +#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE +#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE +#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE +#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 +#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S +#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH +#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY +#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH +#define CONFIG_TIMER_TASK_STACK_SIZE CONFIG_ESP_TIMER_TASK_STACK_SIZE diff --git a/build/config/sdkconfig.json b/build/config/sdkconfig.json new file mode 100644 index 0000000..961f224 --- /dev/null +++ b/build/config/sdkconfig.json @@ -0,0 +1,1039 @@ +{ + "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, + "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3": false, + "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, + "ADC_ENABLE_DEBUG_LOG": false, + "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, + "ADC_SKIP_LEGACY_CONFLICT_CHECK": false, + "ADC_SUPPRESS_DEPRECATE_WARN": false, + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "APP_COMPILE_TIME_DATE": true, + "APP_EXCLUDE_PROJECT_NAME_VAR": false, + "APP_EXCLUDE_PROJECT_VER_VAR": false, + "APP_NO_BLOBS": false, + "APP_PROJECT_VER_FROM_CONFIG": false, + "APP_REPRODUCIBLE_BUILD": false, + "APP_RETRIEVE_LEN_ELF_SHA": 9, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_COMPILE_TIME_DATE": true, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, + "BOOTLOADER_LOG_LEVEL": 3, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": true, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_MODE_TEXT": true, + "BOOTLOADER_LOG_MODE_TEXT_EN": true, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_LOG_VERSION": 1, + "BOOTLOADER_LOG_VERSION_1": true, + "BOOTLOADER_OFFSET_IN_FLASH": 0, + "BOOTLOADER_PROJECT_VER": 1, + "BOOTLOADER_REGION_PROTECTION_ENABLE": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BOOT_ROM_LOG_ALWAYS_OFF": false, + "BOOT_ROM_LOG_ALWAYS_ON": true, + "BOOT_ROM_LOG_ON_GPIO_HIGH": false, + "BOOT_ROM_LOG_ON_GPIO_LOW": false, + "COMPILER_ASSERT_NDEBUG_EVALUATE": true, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": true, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, + "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, + "COMPILER_OPTIMIZATION_DEBUG": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": true, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 256, + "EFUSE_VIRTUAL": false, + "ESP32S3_DATA_CACHE_16KB": false, + "ESP32S3_DATA_CACHE_32KB": true, + "ESP32S3_DATA_CACHE_4WAYS": false, + "ESP32S3_DATA_CACHE_64KB": false, + "ESP32S3_DATA_CACHE_8WAYS": true, + "ESP32S3_DATA_CACHE_LINE_16B": false, + "ESP32S3_DATA_CACHE_LINE_32B": true, + "ESP32S3_DATA_CACHE_LINE_64B": false, + "ESP32S3_DATA_CACHE_LINE_SIZE": 32, + "ESP32S3_DATA_CACHE_SIZE": 32768, + "ESP32S3_DCACHE_ASSOCIATED_WAYS": 8, + "ESP32S3_ICACHE_ASSOCIATED_WAYS": 8, + "ESP32S3_INSTRUCTION_CACHE_16KB": true, + "ESP32S3_INSTRUCTION_CACHE_32KB": false, + "ESP32S3_INSTRUCTION_CACHE_4WAYS": false, + "ESP32S3_INSTRUCTION_CACHE_8WAYS": true, + "ESP32S3_INSTRUCTION_CACHE_LINE_16B": false, + "ESP32S3_INSTRUCTION_CACHE_LINE_32B": true, + "ESP32S3_INSTRUCTION_CACHE_LINE_SIZE": 32, + "ESP32S3_INSTRUCTION_CACHE_SIZE": 16384, + "ESP32S3_REV_MAX_FULL": 99, + "ESP32S3_REV_MIN_0": true, + "ESP32S3_REV_MIN_1": false, + "ESP32S3_REV_MIN_2": false, + "ESP32S3_REV_MIN_FULL": 0, + "ESP32S3_RTCDATA_IN_FAST_MEM": false, + "ESP32S3_TRACEMEM_RESERVE_DRAM": 0, + "ESP32S3_TRAX": false, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32S3_USE_FIXED_STATIC_RAM_SIZE": false, + "ESPTOOLPY_AFTER": "hard_reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BEFORE": "default_reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "80m", + "ESPTOOLPY_FLASHFREQ_120M": false, + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_40M": false, + "ESPTOOLPY_FLASHFREQ_80M": true, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_MODE_AUTO_DETECT": true, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESPTOOLPY_OCT_FLASH": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 7, + "ESP_BROWNOUT_DET_LVL_SEL_1": false, + "ESP_BROWNOUT_DET_LVL_SEL_2": false, + "ESP_BROWNOUT_DET_LVL_SEL_3": false, + "ESP_BROWNOUT_DET_LVL_SEL_4": false, + "ESP_BROWNOUT_DET_LVL_SEL_5": false, + "ESP_BROWNOUT_DET_LVL_SEL_6": false, + "ESP_BROWNOUT_DET_LVL_SEL_7": true, + "ESP_BROWNOUT_USE_INTR": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_SECONDARY_NONE": false, + "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, + "ESP_CONSOLE_UART": true, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_CONSOLE_USB_CDC": false, + "ESP_CONSOLE_USB_SERIAL_JTAG": false, + "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_240": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 199, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_INTR_IN_IRAM": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_ENABLE": true, + "ESP_IPC_ISR_ENABLE": true, + "ESP_IPC_TASK_STACK_SIZE": 1280, + "ESP_IPC_USES_CALLERS_PRIORITY": true, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, + "ESP_MAIN_TASK_AFFINITY": 0, + "ESP_MAIN_TASK_AFFINITY_CPU0": true, + "ESP_MAIN_TASK_AFFINITY_CPU1": false, + "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, + "ESP_MAIN_TASK_STACK_SIZE": 3584, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS": false, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_PERIPH_CTRL_FUNC_IN_IRAM": true, + "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, + "ESP_REV_MAX_FULL": 99, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_CONSOLE_OUTPUT_SECONDARY": true, + "ESP_ROM_GET_CLK_FREQ": true, + "ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG": true, + "ESP_ROM_HAS_CACHE_WRITEBACK_BUG": true, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true, + "ESP_ROM_HAS_ERASE_0_REGION_BUG": true, + "ESP_ROM_HAS_ETS_PRINTF_BUG": true, + "ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG": true, + "ESP_ROM_HAS_HAL_WDT": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_LAYOUT_TABLE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, + "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, + "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, + "ESP_ROM_HAS_SPI_FLASH": true, + "ESP_ROM_HAS_SPI_FLASH_MMAP": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_VERSION": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": 3, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": 4, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, + "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": true, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM": true, + "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, + "ESP_SYSTEM_BBPLL_RECALIB": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_IN_IRAM": true, + "ESP_SYSTEM_MEMPROT_FEATURE": true, + "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": true, + "ESP_SYSTEM_PANIC_PRINT_HALT": false, + "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, + "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, + "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, + "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "ESP_TIMER_IMPL_SYSTIMER": true, + "ESP_TIMER_INTERRUPT_LEVEL": 1, + "ESP_TIMER_IN_IRAM": true, + "ESP_TIMER_ISR_AFFINITY_CPU0": true, + "ESP_TIMER_PROFILING": false, + "ESP_TIMER_SHOW_EXPERIMENTAL": false, + "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, + "ESP_TIMER_TASK_AFFINITY": 0, + "ESP_TIMER_TASK_AFFINITY_CPU0": true, + "ESP_TIMER_TASK_STACK_SIZE": 3584, + "ESP_TIME_FUNCS_USE_ESP_TIMER": true, + "ESP_TIME_FUNCS_USE_RTC_TIMER": true, + "EXAMPLE_DAC_CONTINUOUS_BY_DMA": true, + "EXAMPLE_DAC_CONTINUOUS_BY_TIMER": false, + "EXAMPLE_WAVE_PERIOD_SEC": 2, + "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, + "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, + "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, + "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, + "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, + "FREERTOS_CORETIMER_SYSTIMER_LVL1": true, + "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, + "FREERTOS_ENABLE_TASK_SNAPSHOT": true, + "FREERTOS_FPU_IN_ISR": false, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_IN_IRAM": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 2, + "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, + "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_SYSTIMER": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_SYSTIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_AFFINITY_CPU1": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GDMA_CTRL_FUNC_IN_IRAM": true, + "GDMA_ENABLE_DEBUG_LOG": false, + "GDMA_ISR_HANDLER_IN_IRAM": true, + "GDMA_ISR_IRAM_SAFE": false, + "GDMA_OBJ_DRAM_SAFE": true, + "GPIO_CTRL_FUNC_IN_IRAM": false, + "GPTIMER_CTRL_FUNC_IN_IRAM": false, + "GPTIMER_ENABLE_DEBUG_LOG": false, + "GPTIMER_ISR_CACHE_SAFE": false, + "GPTIMER_ISR_HANDLER_IN_IRAM": true, + "GPTIMER_OBJ_CACHE_SAFE": true, + "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK": false, + "GPTIMER_SUPPRESS_DEPRECATE_WARN": false, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_WDT_USE_ROM_IMPL": true, + "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, + "HEAP_PLACE_FUNCTION_INTO_FLASH": false, + "HEAP_POISONING_COMPREHENSIVE": false, + "HEAP_POISONING_DISABLED": true, + "HEAP_POISONING_LIGHT": false, + "HEAP_TASK_TRACKING": false, + "HEAP_TRACING_OFF": true, + "HEAP_TRACING_STANDALONE": false, + "HEAP_TRACING_TOHOST": false, + "HEAP_USE_HOOKS": false, + "I2C_ENABLE_DEBUG_LOG": false, + "I2C_ENABLE_SLAVE_DRIVER_VERSION_2": false, + "I2C_ISR_IRAM_SAFE": false, + "I2C_MASTER_ISR_HANDLER_IN_IRAM": true, + "I2C_SKIP_LEGACY_CONFLICT_CHECK": false, + "I2S_ENABLE_DEBUG_LOG": false, + "I2S_ISR_IRAM_SAFE": false, + "I2S_SKIP_LEGACY_CONFLICT_CHECK": false, + "I2S_SUPPRESS_DEPRECATE_WARN": false, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 9, + "IDF_INIT_VERSION": "5.5.1", + "IDF_TARGET": "esp32s3", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32S3": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LEDC_CTRL_FUNC_IN_IRAM": false, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": true, + "LIBC_NEWLIB_NANO_FORMAT": false, + "LIBC_TIME_SYSCALL_USE_HRT": false, + "LIBC_TIME_SYSCALL_USE_NONE": false, + "LIBC_TIME_SYSCALL_USE_RTC": false, + "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, + "LOG_COLORS": false, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_IN_IRAM": true, + "LOG_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_MODE_TEXT": true, + "LOG_MODE_TEXT_EN": true, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LOG_VERSION": 1, + "LOG_VERSION_1": true, + "LOG_VERSION_2": false, + "MBEDTLS_AES_C": true, + "MBEDTLS_AES_INTERRUPT_LEVEL": 0, + "MBEDTLS_AES_USE_INTERRUPT": true, + "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION": false, + "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, + "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, + "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, + "MBEDTLS_BLOWFISH_C": false, + "MBEDTLS_CAMELLIA_C": false, + "MBEDTLS_CCM_C": true, + "MBEDTLS_CERTIFICATE_BUNDLE": true, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": false, + "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, + "MBEDTLS_CHACHA20_C": false, + "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, + "MBEDTLS_CMAC_C": false, + "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, + "MBEDTLS_CUSTOM_MEM_ALLOC": false, + "MBEDTLS_DEBUG": false, + "MBEDTLS_DEFAULT_MEM_ALLOC": false, + "MBEDTLS_DES_C": false, + "MBEDTLS_DHM_C": false, + "MBEDTLS_DYNAMIC_BUFFER": false, + "MBEDTLS_ECDH_C": true, + "MBEDTLS_ECDSA_C": true, + "MBEDTLS_ECDSA_DETERMINISTIC": true, + "MBEDTLS_ECJPAKE_C": false, + "MBEDTLS_ECP_C": true, + "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, + "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, + "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, + "MBEDTLS_ECP_NIST_OPTIM": true, + "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_ERROR_STRINGS": true, + "MBEDTLS_GCM_C": true, + "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, + "MBEDTLS_HARDWARE_AES": true, + "MBEDTLS_HARDWARE_MPI": true, + "MBEDTLS_HARDWARE_SHA": true, + "MBEDTLS_HAVE_TIME": true, + "MBEDTLS_HAVE_TIME_DATE": false, + "MBEDTLS_HKDF_C": false, + "MBEDTLS_INTERNAL_MEM_ALLOC": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, + "MBEDTLS_KEY_EXCHANGE_RSA": true, + "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": false, + "MBEDTLS_MPI_INTERRUPT_LEVEL": 0, + "MBEDTLS_MPI_USE_INTERRUPT": true, + "MBEDTLS_NIST_KW_C": false, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS7_C": true, + "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, + "MBEDTLS_PK_PARSE_EC_EXTENDED": true, + "MBEDTLS_PLATFORM_TIME_ALT": false, + "MBEDTLS_POLY1305_C": false, + "MBEDTLS_PSK_MODES": false, + "MBEDTLS_RIPEMD160_C": false, + "MBEDTLS_ROM_MD5": true, + "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "MBEDTLS_SHA1_C": true, + "MBEDTLS_SHA3_C": false, + "MBEDTLS_SHA512_C": true, + "MBEDTLS_SSL_ALPN": true, + "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, + "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, + "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, + "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT": false, + "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, + "MBEDTLS_SSL_PROTO_DTLS": false, + "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, + "MBEDTLS_SSL_PROTO_TLS1_2": true, + "MBEDTLS_SSL_PROTO_TLS1_3": false, + "MBEDTLS_SSL_RENEGOTIATION": true, + "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, + "MBEDTLS_THREADING_C": false, + "MBEDTLS_TLS_CLIENT": true, + "MBEDTLS_TLS_CLIENT_ONLY": false, + "MBEDTLS_TLS_DISABLED": false, + "MBEDTLS_TLS_ENABLED": true, + "MBEDTLS_TLS_SERVER": true, + "MBEDTLS_TLS_SERVER_AND_CLIENT": true, + "MBEDTLS_TLS_SERVER_ONLY": false, + "MBEDTLS_X509_CRL_PARSE_C": true, + "MBEDTLS_X509_CSR_PARSE_C": true, + "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, + "MBEDTLS_XTEA_C": false, + "MCPWM_CTRL_FUNC_IN_IRAM": false, + "MCPWM_ENABLE_DEBUG_LOG": false, + "MCPWM_ISR_CACHE_SAFE": false, + "MCPWM_ISR_HANDLER_IN_IRAM": true, + "MCPWM_OBJ_CACHE_SAFE": true, + "MCPWM_SKIP_LEGACY_CONFLICT_CHECK": false, + "MCPWM_SUPPRESS_DEPRECATE_WARN": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "PARTITION_TABLE_CUSTOM": false, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions_singleapp.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": true, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PARTITION_TABLE_TWO_OTA_LARGE": false, + "PCNT_CTRL_FUNC_IN_IRAM": false, + "PCNT_ENABLE_DEBUG_LOG": false, + "PCNT_ISR_IRAM_SAFE": false, + "PCNT_SKIP_LEGACY_CONFLICT_CHECK": false, + "PCNT_SUPPRESS_DEPRECATE_WARN": false, + "PM_ENABLE": false, + "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, + "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP": true, + "PM_SLEEP_FUNC_IN_IRAM": true, + "PM_SLP_IRAM_OPT": true, + "PTHREAD_DEFAULT_CORE_0": false, + "PTHREAD_DEFAULT_CORE_1": false, + "PTHREAD_DEFAULT_CORE_NO_AFFINITY": true, + "PTHREAD_STACK_MIN": 768, + "PTHREAD_TASK_CORE_DEFAULT": -1, + "PTHREAD_TASK_NAME_DEFAULT": "pthread", + "PTHREAD_TASK_PRIO_DEFAULT": 5, + "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, + "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH": false, + "RMT_ENABLE_DEBUG_LOG": false, + "RMT_ENCODER_FUNC_IN_IRAM": true, + "RMT_ISR_IRAM_SAFE": false, + "RMT_OBJ_CACHE_SAFE": true, + "RMT_RECV_FUNC_IN_IRAM": false, + "RMT_RX_ISR_CACHE_SAFE": false, + "RMT_RX_ISR_HANDLER_IN_IRAM": true, + "RMT_SKIP_LEGACY_CONFLICT_CHECK": false, + "RMT_SUPPRESS_DEPRECATE_WARN": false, + "RMT_TX_ISR_CACHE_SAFE": false, + "RMT_TX_ISR_HANDLER_IN_IRAM": true, + "RTC_CLK_CAL_CYCLES": 1024, + "RTC_CLK_SRC_EXT_CRYS": false, + "RTC_CLK_SRC_EXT_OSC": false, + "RTC_CLK_SRC_INT_8MD256": false, + "RTC_CLK_SRC_INT_RC": true, + "SDM_CTRL_FUNC_IN_IRAM": false, + "SDM_ENABLE_DEBUG_LOG": false, + "SDM_SKIP_LEGACY_CONFLICT_CHECK": false, + "SDM_SUPPRESS_DEPRECATE_WARN": false, + "SECURE_BOOT": false, + "SECURE_BOOT_V2_PREFERRED": true, + "SECURE_BOOT_V2_RSA_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_ROM_DL_MODE_ENABLED": true, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ARBITER_SUPPORTED": true, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 12, + "SOC_ADC_DIGI_MONITOR_NUM": 2, + "SOC_ADC_DIGI_RESULT_BYTES": 4, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_MONITOR_SUPPORTED": true, + "SOC_ADC_PATT_LEN_MAX": 24, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 12, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, + "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_GDMA": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_AES_SUPPORT_DMA": true, + "SOC_AHB_GDMA_SUPPORTED": true, + "SOC_AHB_GDMA_SUPPORT_PSRAM": true, + "SOC_AHB_GDMA_VERSION": 1, + "SOC_APB_BACKUP_DMA": true, + "SOC_APPCPU_HAS_CLOCK_GATING_BUG": true, + "SOC_ASYNC_MEMCPY_SUPPORTED": true, + "SOC_BLE_50_SUPPORTED": true, + "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CACHE_ACS_INVALID_STATE_ON_PANIC": true, + "SOC_CACHE_FREEZE_SUPPORTED": true, + "SOC_CACHE_SUPPORT_WRAP": true, + "SOC_CACHE_WRITEBACK_SUPPORTED": true, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2": true, + "SOC_CLK_RC_FAST_D256_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, + "SOC_COEX_HW_PTI": true, + "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true, + "SOC_CPU_BREAKPOINTS_NUM": 2, + "SOC_CPU_CORES_NUM": 2, + "SOC_CPU_HAS_FPU": true, + "SOC_CPU_INTR_NUM": 32, + "SOC_CPU_WATCHPOINTS_NUM": 2, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64, + "SOC_DEDICATED_GPIO_SUPPORTED": true, + "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, + "SOC_DEDIC_GPIO_OUT_AUTO_ENABLE": true, + "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DIG_SIGN_SUPPORTED": true, + "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, + "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, + "SOC_DS_SIGNATURE_MAX_BIT_LEN": 4096, + "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, + "SOC_EFUSE_DIS_DIRECT_BOOT": true, + "SOC_EFUSE_DIS_DOWNLOAD_DCACHE": true, + "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, + "SOC_EFUSE_DIS_ICACHE": true, + "SOC_EFUSE_DIS_USB_JTAG": true, + "SOC_EFUSE_HARD_DIS_JTAG": true, + "SOC_EFUSE_KEY_PURPOSE_FIELD": true, + "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, + "SOC_EFUSE_SOFT_DIS_JTAG": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EXTERNAL_COEX_LEADER_TX_LINE": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64, + "SOC_FLASH_ENCRYPTION_XTS_AES": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_256": true, + "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS": true, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GDMA_NUM_GROUPS_MAX": 1, + "SOC_GDMA_PAIRS_PER_GROUP": 5, + "SOC_GDMA_PAIRS_PER_GROUP_MAX": 5, + "SOC_GDMA_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_FILTER_CLK_SUPPORT_APB": true, + "SOC_GPIO_IN_RANGE_MAX": 48, + "SOC_GPIO_OUT_RANGE_MAX": 48, + "SOC_GPIO_PIN_COUNT": 49, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_SUPPORT_FORCE_HOLD": true, + "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, + "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, + "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 562949886312448, + "SOC_GPIO_VALID_GPIO_MASK": 562949953421311, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HMAC_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_HP_I2C_NUM": 2, + "SOC_I2C_CMD_REG_NUM": 8, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, + "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, + "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_HW_CLR_BUS": true, + "SOC_I2C_SUPPORT_RTC": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2C_SUPPORT_XTAL": true, + "SOC_I2S_HW_VERSION_2": true, + "SOC_I2S_NUM": 2, + "SOC_I2S_PDM_MAX_RX_LINES": 4, + "SOC_I2S_PDM_MAX_TX_LINES": 2, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_PCM": true, + "SOC_I2S_SUPPORTS_PCM2PDM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM2PCM": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_I2S_SUPPORTS_PLL_F160M": true, + "SOC_I2S_SUPPORTS_TDM": true, + "SOC_I2S_SUPPORTS_XTAL": true, + "SOC_LCDCAM_CAM_DATA_WIDTH_MAX": 16, + "SOC_LCDCAM_CAM_PERIPH_NUM": 1, + "SOC_LCDCAM_CAM_SUPPORTED": true, + "SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV": true, + "SOC_LCDCAM_I80_BUS_WIDTH": 16, + "SOC_LCDCAM_I80_LCD_SUPPORTED": true, + "SOC_LCDCAM_I80_NUM_BUSES": 1, + "SOC_LCDCAM_RGB_DATA_WIDTH": 16, + "SOC_LCDCAM_RGB_LCD_SUPPORTED": true, + "SOC_LCDCAM_RGB_NUM_PANELS": 1, + "SOC_LCDCAM_SUPPORTED": true, + "SOC_LCD_I80_BUSES": 1, + "SOC_LCD_I80_BUS_WIDTH": 16, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LCD_RGB_DATA_WIDTH": 16, + "SOC_LCD_RGB_PANELS": 1, + "SOC_LCD_RGB_SUPPORTED": true, + "SOC_LCD_SUPPORT_RGB_YUV_CONV": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_FADE_STOP": true, + "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 14, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_IO_CLOCK_IS_INDEPENDENT": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_MAC_BB_PD_MEM_SIZE": 192, + "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, + "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP": true, + "SOC_MCPWM_COMPARATORS_PER_OPERATOR": 2, + "SOC_MCPWM_GENERATORS_PER_OPERATOR": 2, + "SOC_MCPWM_GPIO_FAULTS_PER_GROUP": 3, + "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP": 3, + "SOC_MCPWM_GROUPS": 2, + "SOC_MCPWM_OPERATORS_PER_GROUP": 3, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true, + "SOC_MCPWM_TIMERS_PER_GROUP": 3, + "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, + "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16, + "SOC_MEMPROT_MEM_ALIGN_SIZE": 256, + "SOC_MEMPROT_SUPPORTED": true, + "SOC_MEMSPI_CORE_CLK_SHARED_WITH_PSRAM": true, + "SOC_MEMSPI_IS_INDEPENDENT": true, + "SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MEMSPI_TIMING_TUNING_BY_MSPI_DELAY": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MMU_PERIPH_NUM": 1, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 3, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MPU_SUPPORTED": true, + "SOC_PCNT_CHANNELS_PER_UNIT": 2, + "SOC_PCNT_GROUPS": 1, + "SOC_PCNT_SUPPORTED": true, + "SOC_PCNT_THRES_POINT_PER_UNIT": 2, + "SOC_PCNT_UNITS_PER_GROUP": 4, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_CPU_RETENTION_BY_RTCCNTL": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_BT_WAKEUP": true, + "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MAC_BB_PD": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_TAGMEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_PM_SUPPORT_WIFI_WAKEUP": true, + "SOC_PSRAM_DMA_CAPABLE": true, + "SOC_RISCV_COPROC_SUPPORTED": true, + "SOC_RMT_CHANNELS_PER_GROUP": 8, + "SOC_RMT_GROUPS": 1, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, + "SOC_RMT_RX_CANDIDATES_PER_GROUP": 4, + "SOC_RMT_SUPPORTED": true, + "SOC_RMT_SUPPORT_APB": true, + "SOC_RMT_SUPPORT_DMA": true, + "SOC_RMT_SUPPORT_RC_FAST": true, + "SOC_RMT_SUPPORT_RX_DEMODULATION": true, + "SOC_RMT_SUPPORT_RX_PINGPONG": true, + "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, + "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, + "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true, + "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, + "SOC_RMT_SUPPORT_TX_SYNCHRO": true, + "SOC_RMT_SUPPORT_XTAL": true, + "SOC_RMT_TX_CANDIDATES_PER_GROUP": 4, + "SOC_RNG_SUPPORTED": true, + "SOC_RSA_MAX_BIT_LEN": 4096, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 22, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128, + "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 549, + "SOC_RTC_CNTL_TAGMEM_PD_DMA_BUS_WIDTH": 128, + "SOC_RTC_FAST_MEM_SUPPORTED": true, + "SOC_RTC_MEM_SUPPORTED": true, + "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, + "SOC_RTC_SLOW_MEM_SUPPORTED": true, + "SOC_SDMMC_DELAY_PHASE_NUM": 4, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_SUPPORT_XTAL_CLOCK": true, + "SOC_SDMMC_USE_GPIO_MATRIX": true, + "SOC_SDM_CHANNELS_PER_GROUP": 8, + "SOC_SDM_CLK_SUPPORT_APB": true, + "SOC_SDM_GROUPS": 1, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V2_RSA": true, + "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, + "SOC_SHA_GDMA": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_DMA": true, + "SOC_SHA_SUPPORT_RESUME": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA224": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SHA_SUPPORT_SHA512_224": true, + "SOC_SHA_SUPPORT_SHA512_256": true, + "SOC_SHA_SUPPORT_SHA512_T": true, + "SOC_SIMD_INSTRUCTION_SUPPORTED": true, + "SOC_SIMD_PREFERRED_DATA_ALIGNMENT": 16, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPIRAM_XIP_SUPPORTED": true, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 6, + "SOC_SPI_MAX_PRE_DIVIDER": 16, + "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, + "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, + "SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP": true, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE": true, + "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_TIMING_TUNING": true, + "SOC_SPI_MEM_SUPPORT_WRAP": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, + "SOC_SPI_SCT_BUFFER_NUM_MAX": true, + "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, + "SOC_SPI_SCT_REG_NUM": 14, + "SOC_SPI_SCT_SUPPORTED": true, + "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, + "SOC_SPI_SUPPORT_CD_SIG": true, + "SOC_SPI_SUPPORT_CLK_APB": true, + "SOC_SPI_SUPPORT_CLK_XTAL": true, + "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, + "SOC_SPI_SUPPORT_DDRCLK": true, + "SOC_SPI_SUPPORT_OCT": true, + "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, + "SOC_SUPPORTS_SECURE_DL_MODE": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, + "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, + "SOC_SYSTIMER_ALARM_NUM": 3, + "SOC_SYSTIMER_BIT_WIDTH_HI": 20, + "SOC_SYSTIMER_BIT_WIDTH_LO": 32, + "SOC_SYSTIMER_COUNTER_NUM": 2, + "SOC_SYSTIMER_FIXED_DIVIDER": true, + "SOC_SYSTIMER_INT_LEVEL": true, + "SOC_SYSTIMER_SUPPORTED": true, + "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, + "SOC_TEMP_SENSOR_SUPPORTED": true, + "SOC_TIMER_GROUPS": 2, + "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, + "SOC_TIMER_GROUP_SUPPORT_APB": true, + "SOC_TIMER_GROUP_SUPPORT_XTAL": true, + "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2, + "SOC_TIMER_GROUP_TOTAL_TIMERS": 4, + "SOC_TOUCH_MAX_CHAN_ID": 14, + "SOC_TOUCH_MIN_CHAN_ID": 1, + "SOC_TOUCH_PROXIMITY_CHANNEL_NUM": 3, + "SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED": true, + "SOC_TOUCH_SAMPLE_CFG_NUM": 1, + "SOC_TOUCH_SENSOR_NUM": 15, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_SENSOR_VERSION": 2, + "SOC_TOUCH_SUPPORT_BENCHMARK": true, + "SOC_TOUCH_SUPPORT_DENOISE_CHAN": true, + "SOC_TOUCH_SUPPORT_PROX_SENSING": true, + "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true, + "SOC_TOUCH_SUPPORT_WATERPROOF": true, + "SOC_TWAI_BRP_MAX": 16384, + "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CLK_SUPPORT_APB": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_TWAI_SUPPORTS_RX_STATUS": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HP_NUM": 3, + "SOC_UART_NUM": 3, + "SOC_UART_SUPPORTED": true, + "SOC_UART_SUPPORT_APB_CLK": true, + "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, + "SOC_UART_SUPPORT_RTC_CLK": true, + "SOC_UART_SUPPORT_WAKEUP_INT": true, + "SOC_UART_SUPPORT_XTAL_CLK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_UHCI_NUM": 1, + "SOC_UHCI_SUPPORTED": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_USB_OTG_PERIPH_NUM": 1, + "SOC_USB_OTG_SUPPORTED": true, + "SOC_USB_SERIAL_JTAG_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_FTM_SUPPORT": true, + "SOC_WIFI_GCMP_SUPPORT": true, + "SOC_WIFI_HW_TSF": true, + "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_40M": true, + "SOC_XT_WDT_SUPPORTED": true, + "SPI_FLASH_AUTO_SUSPEND": false, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND": false, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, + "SPI_FLASH_HPM_AUTO": true, + "SPI_FLASH_HPM_DC_AUTO": true, + "SPI_FLASH_HPM_DC_DISABLE": false, + "SPI_FLASH_HPM_DIS": false, + "SPI_FLASH_HPM_ENA": false, + "SPI_FLASH_HPM_ON": true, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_ROM_IMPL": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": true, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": true, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, + "SPI_FLASH_VERIFY_WRITE": false, + "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, + "SPI_FLASH_YIELD_DURING_ERASE": true, + "SPI_MASTER_IN_IRAM": false, + "SPI_MASTER_ISR_IN_IRAM": true, + "SPI_SLAVE_IN_IRAM": false, + "SPI_SLAVE_ISR_IN_IRAM": true, + "TEMP_SENSOR_ENABLE_DEBUG_LOG": false, + "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK": false, + "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": false, + "TOUCH_SKIP_LEGACY_CONFLICT_CHECK": false, + "TOUCH_SUPPRESS_DEPRECATE_WARN": false, + "TWAI_ENABLE_DEBUG_LOG": false, + "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM": true, + "TWAI_ISR_CACHE_SAFE": false, + "TWAI_ISR_IN_IRAM": false, + "TWAI_SKIP_LEGACY_CONFLICT_CHECK": false, + "UART_ISR_IN_IRAM": false, + "UHCI_ENABLE_DEBUG_LOG": false, + "UHCI_ISR_CACHE_SAFE": false, + "UHCI_ISR_HANDLER_IN_IRAM": false, + "USJ_ENABLE_USB_SERIAL_JTAG": true, + "XTAL_FREQ": 40, + "XTAL_FREQ_40": true +} \ No newline at end of file diff --git a/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj new file mode 100644 index 0000000..6943b8c Binary files /dev/null and b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj differ diff --git a/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj new file mode 100644 index 0000000..3462b79 Binary files /dev/null and b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj differ diff --git a/build/esp-idf/app_update/cmake_install.cmake b/build/esp-idf/app_update/cmake_install.cmake new file mode 100644 index 0000000..f859951 --- /dev/null +++ b/build/esp-idf/app_update/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/app_update + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/app_update/libapp_update.a b/build/esp-idf/app_update/libapp_update.a new file mode 100644 index 0000000..dc324d6 Binary files /dev/null and b/build/esp-idf/app_update/libapp_update.a differ diff --git a/build/esp-idf/bootloader/bootloader-flash_args.in b/build/esp-idf/bootloader/bootloader-flash_args.in new file mode 100644 index 0000000..46c4661 --- /dev/null +++ b/build/esp-idf/bootloader/bootloader-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin \ No newline at end of file diff --git a/build/esp-idf/bootloader/cmake_install.cmake b/build/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..b01ae6c --- /dev/null +++ b/build/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj new file mode 100644 index 0000000..3827543 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj new file mode 100644 index 0000000..d7b2807 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..2bff06e Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj new file mode 100644 index 0000000..52eef3b Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..9e6e6ed Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj new file mode 100644 index 0000000..f84b6ff Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj new file mode 100644 index 0000000..e142155 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..c20f012 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..53ae446 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj new file mode 100644 index 0000000..6fcfa6b Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32s3.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj new file mode 100644 index 0000000..20a265d Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..88b2d97 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj new file mode 100644 index 0000000..a74161d Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32s3/secure_boot_secure_features.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..ffb4a37 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..974fa35 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..7ca2c93 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj new file mode 100644 index 0000000..0c44fba Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj differ diff --git a/build/esp-idf/bootloader_support/cmake_install.cmake b/build/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..9fe64dd --- /dev/null +++ b/build/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/bootloader_support/libbootloader_support.a b/build/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..648516d Binary files /dev/null and b/build/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/build/esp-idf/cmake_install.cmake b/build/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..a22f997 --- /dev/null +++ b/build/esp-idf/cmake_install.cmake @@ -0,0 +1,309 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_dac/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_parlio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj new file mode 100644 index 0000000..efe4604 Binary files /dev/null and b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj differ diff --git a/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj new file mode 100644 index 0000000..9a5e3ca Binary files /dev/null and b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj differ diff --git a/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj new file mode 100644 index 0000000..1022f65 Binary files /dev/null and b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj differ diff --git a/build/esp-idf/cxx/cmake_install.cmake b/build/esp-idf/cxx/cmake_install.cmake new file mode 100644 index 0000000..662c4e6 --- /dev/null +++ b/build/esp-idf/cxx/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/cxx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/cxx/libcxx.a b/build/esp-idf/cxx/libcxx.a new file mode 100644 index 0000000..dc04b16 Binary files /dev/null and b/build/esp-idf/cxx/libcxx.a differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj new file mode 100644 index 0000000..6993883 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj new file mode 100644 index 0000000..890a1d2 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj new file mode 100644 index 0000000..2d86eba Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj new file mode 100644 index 0000000..d2546b7 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj new file mode 100644 index 0000000..34dd4bd Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj new file mode 100644 index 0000000..166327a Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj new file mode 100644 index 0000000..6a2a9a8 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj new file mode 100644 index 0000000..c239136 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj new file mode 100644 index 0000000..4a63529 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj new file mode 100644 index 0000000..d266525 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj new file mode 100644 index 0000000..76861a8 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32s3/touch_sensor.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj new file mode 100644 index 0000000..82f3b10 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj new file mode 100644 index 0000000..d815bde Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj differ diff --git a/build/esp-idf/driver/cmake_install.cmake b/build/esp-idf/driver/cmake_install.cmake new file mode 100644 index 0000000..852f522 --- /dev/null +++ b/build/esp-idf/driver/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/driver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj new file mode 100644 index 0000000..400f6b2 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_fields.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj new file mode 100644 index 0000000..45602f7 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_rtc_calib.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj new file mode 100644 index 0000000..22994f3 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_table.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj new file mode 100644 index 0000000..bfe0937 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32s3/esp_efuse_utility.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..1621a2b Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..16acb18 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..2638b24 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj new file mode 100644 index 0000000..67eb0aa Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..4ed78c1 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/build/esp-idf/efuse/cmake_install.cmake b/build/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..53dcc6a --- /dev/null +++ b/build/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/efuse/libefuse.a b/build/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..772f738 Binary files /dev/null and b/build/esp-idf/efuse/libefuse.a differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj new file mode 100644 index 0000000..bdd5331 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj new file mode 100644 index 0000000..50d5d30 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj new file mode 100644 index 0000000..b0846a8 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj new file mode 100644 index 0000000..7a3a811 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj new file mode 100644 index 0000000..80926a0 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_filter.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj new file mode 100644 index 0000000..e85b115 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_monitor.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj new file mode 100644 index 0000000..2e3e78a Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj new file mode 100644 index 0000000..e0d78ed Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32s3/esp_adc_cal_legacy.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj new file mode 100644 index 0000000..873e2ed Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj new file mode 100644 index 0000000..691ee3f Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32s3/curve_fitting_coefficients.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj new file mode 100644 index 0000000..90eb9a7 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/gdma/adc_dma.c.obj differ diff --git a/build/esp-idf/esp_adc/cmake_install.cmake b/build/esp-idf/esp_adc/cmake_install.cmake new file mode 100644 index 0000000..38ad16f --- /dev/null +++ b/build/esp-idf/esp_adc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj b/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj new file mode 100644 index 0000000..cfe7fdf Binary files /dev/null and b/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj differ diff --git a/build/esp-idf/esp_app_format/cmake_install.cmake b/build/esp-idf/esp_app_format/cmake_install.cmake new file mode 100644 index 0000000..2f2c75c --- /dev/null +++ b/build/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_app_format/libesp_app_format.a b/build/esp-idf/esp_app_format/libesp_app_format.a new file mode 100644 index 0000000..a116f8f Binary files /dev/null and b/build/esp-idf/esp_app_format/libesp_app_format.a differ diff --git a/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj new file mode 100644 index 0000000..f8c8c18 Binary files /dev/null and b/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj differ diff --git a/build/esp-idf/esp_bootloader_format/cmake_install.cmake b/build/esp-idf/esp_bootloader_format/cmake_install.cmake new file mode 100644 index 0000000..5ff4c7b --- /dev/null +++ b/build/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a new file mode 100644 index 0000000..b030fe8 Binary files /dev/null and b/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj new file mode 100644 index 0000000..b605f35 Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj differ diff --git a/build/esp-idf/esp_common/cmake_install.cmake b/build/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..a5ff878 --- /dev/null +++ b/build/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_common/libesp_common.a b/build/esp-idf/esp_common/libesp_common.a new file mode 100644 index 0000000..ce56624 Binary files /dev/null and b/build/esp-idf/esp_common/libesp_common.a differ diff --git a/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake b/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake new file mode 100644 index 0000000..6e20db0 --- /dev/null +++ b/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake b/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake new file mode 100644 index 0000000..a0f77ab --- /dev/null +++ b/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_dac/cmake_install.cmake b/build/esp-idf/esp_driver_dac/cmake_install.cmake new file mode 100644 index 0000000..4035f87 --- /dev/null +++ b/build/esp-idf/esp_driver_dac/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj new file mode 100644 index 0000000..1ac87f4 Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj differ diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj new file mode 100644 index 0000000..e282e21 Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj differ diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj new file mode 100644 index 0000000..3e3d48c Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj differ diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj new file mode 100644 index 0000000..a94bc42 Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj differ diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj new file mode 100644 index 0000000..da238cc Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj differ diff --git a/build/esp-idf/esp_driver_gpio/cmake_install.cmake b/build/esp-idf/esp_driver_gpio/cmake_install.cmake new file mode 100644 index 0000000..e00a87f --- /dev/null +++ b/build/esp-idf/esp_driver_gpio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a b/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a new file mode 100644 index 0000000..c46f35e Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a differ diff --git a/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj b/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj new file mode 100644 index 0000000..eab67da Binary files /dev/null and b/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj differ diff --git a/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj b/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj new file mode 100644 index 0000000..f003388 Binary files /dev/null and b/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj differ diff --git a/build/esp-idf/esp_driver_gptimer/cmake_install.cmake b/build/esp-idf/esp_driver_gptimer/cmake_install.cmake new file mode 100644 index 0000000..129f556 --- /dev/null +++ b/build/esp-idf/esp_driver_gptimer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj new file mode 100644 index 0000000..11374d2 Binary files /dev/null and b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj differ diff --git a/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj new file mode 100644 index 0000000..8835bd1 Binary files /dev/null and b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj differ diff --git a/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj new file mode 100644 index 0000000..04621d3 Binary files /dev/null and b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj differ diff --git a/build/esp-idf/esp_driver_i2c/cmake_install.cmake b/build/esp-idf/esp_driver_i2c/cmake_install.cmake new file mode 100644 index 0000000..084f68c --- /dev/null +++ b/build/esp-idf/esp_driver_i2c/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj new file mode 100644 index 0000000..90fbf31 Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj new file mode 100644 index 0000000..91e5e37 Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj new file mode 100644 index 0000000..e451732 Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj new file mode 100644 index 0000000..9456d2b Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj new file mode 100644 index 0000000..5a4b02d Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/cmake_install.cmake b/build/esp-idf/esp_driver_i2s/cmake_install.cmake new file mode 100644 index 0000000..ac2baef --- /dev/null +++ b/build/esp-idf/esp_driver_i2s/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj b/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj new file mode 100644 index 0000000..051eff9 Binary files /dev/null and b/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj differ diff --git a/build/esp-idf/esp_driver_ledc/cmake_install.cmake b/build/esp-idf/esp_driver_ledc/cmake_install.cmake new file mode 100644 index 0000000..10a2731 --- /dev/null +++ b/build/esp-idf/esp_driver_ledc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj new file mode 100644 index 0000000..d1545a9 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj new file mode 100644 index 0000000..cb77afa Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj new file mode 100644 index 0000000..f44a2a7 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj new file mode 100644 index 0000000..eb2f2d3 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj new file mode 100644 index 0000000..ed52b15 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj new file mode 100644 index 0000000..d2ffe25 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj new file mode 100644 index 0000000..40e3ce7 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj new file mode 100644 index 0000000..31dbebb Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake b/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake new file mode 100644 index 0000000..5cf6470 --- /dev/null +++ b/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_parlio/cmake_install.cmake b/build/esp-idf/esp_driver_parlio/cmake_install.cmake new file mode 100644 index 0000000..39f7a2a --- /dev/null +++ b/build/esp-idf/esp_driver_parlio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj b/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj new file mode 100644 index 0000000..8598060 Binary files /dev/null and b/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj differ diff --git a/build/esp-idf/esp_driver_pcnt/cmake_install.cmake b/build/esp-idf/esp_driver_pcnt/cmake_install.cmake new file mode 100644 index 0000000..d1d2d83 --- /dev/null +++ b/build/esp-idf/esp_driver_pcnt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj new file mode 100644 index 0000000..f132b37 Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj new file mode 100644 index 0000000..08a97ad Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj new file mode 100644 index 0000000..d8f66ae Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj new file mode 100644 index 0000000..39ca70d Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj new file mode 100644 index 0000000..919f726 Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj new file mode 100644 index 0000000..b4eb1ee Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj new file mode 100644 index 0000000..ad9a31d Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/cmake_install.cmake b/build/esp-idf/esp_driver_rmt/cmake_install.cmake new file mode 100644 index 0000000..dc42619 --- /dev/null +++ b/build/esp-idf/esp_driver_rmt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_sdio/cmake_install.cmake b/build/esp-idf/esp_driver_sdio/cmake_install.cmake new file mode 100644 index 0000000..6f8493b --- /dev/null +++ b/build/esp-idf/esp_driver_sdio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj b/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj new file mode 100644 index 0000000..1c11cef Binary files /dev/null and b/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj differ diff --git a/build/esp-idf/esp_driver_sdm/cmake_install.cmake b/build/esp-idf/esp_driver_sdm/cmake_install.cmake new file mode 100644 index 0000000..33d3e47 --- /dev/null +++ b/build/esp-idf/esp_driver_sdm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj new file mode 100644 index 0000000..1d1ce4c Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_host.c.obj differ diff --git a/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj new file mode 100644 index 0000000..837a0df Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sdmmc_transaction.c.obj differ diff --git a/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake b/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake new file mode 100644 index 0000000..5945a7b --- /dev/null +++ b/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj new file mode 100644 index 0000000..473576a Binary files /dev/null and b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj differ diff --git a/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj new file mode 100644 index 0000000..c4d08b6 Binary files /dev/null and b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj differ diff --git a/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj new file mode 100644 index 0000000..404a9f3 Binary files /dev/null and b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj differ diff --git a/build/esp-idf/esp_driver_sdspi/cmake_install.cmake b/build/esp-idf/esp_driver_sdspi/cmake_install.cmake new file mode 100644 index 0000000..af86f16 --- /dev/null +++ b/build/esp-idf/esp_driver_sdspi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj new file mode 100644 index 0000000..836e97a Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj differ diff --git a/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj new file mode 100644 index 0000000..856b1af Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj differ diff --git a/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj new file mode 100644 index 0000000..a6eface Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj differ diff --git a/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj new file mode 100644 index 0000000..b70c1e2 Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj differ diff --git a/build/esp-idf/esp_driver_spi/cmake_install.cmake b/build/esp-idf/esp_driver_spi/cmake_install.cmake new file mode 100644 index 0000000..ec1e30f --- /dev/null +++ b/build/esp-idf/esp_driver_spi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj b/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj new file mode 100644 index 0000000..469748d Binary files /dev/null and b/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj differ diff --git a/build/esp-idf/esp_driver_tsens/cmake_install.cmake b/build/esp-idf/esp_driver_tsens/cmake_install.cmake new file mode 100644 index 0000000..6eed53d --- /dev/null +++ b/build/esp-idf/esp_driver_tsens/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj b/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj new file mode 100644 index 0000000..3978cde Binary files /dev/null and b/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj differ diff --git a/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj b/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj new file mode 100644 index 0000000..d20e236 Binary files /dev/null and b/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj differ diff --git a/build/esp-idf/esp_driver_twai/cmake_install.cmake b/build/esp-idf/esp_driver_twai/cmake_install.cmake new file mode 100644 index 0000000..57d508f --- /dev/null +++ b/build/esp-idf/esp_driver_twai/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj new file mode 100644 index 0000000..a1ef544 Binary files /dev/null and b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj differ diff --git a/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj new file mode 100644 index 0000000..3045e12 Binary files /dev/null and b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj differ diff --git a/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj new file mode 100644 index 0000000..b9ea801 Binary files /dev/null and b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj differ diff --git a/build/esp-idf/esp_driver_uart/cmake_install.cmake b/build/esp-idf/esp_driver_uart/cmake_install.cmake new file mode 100644 index 0000000..47a3d9c --- /dev/null +++ b/build/esp-idf/esp_driver_uart/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj new file mode 100644 index 0000000..da3a625 Binary files /dev/null and b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj differ diff --git a/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj new file mode 100644 index 0000000..46c2372 Binary files /dev/null and b/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj differ diff --git a/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake b/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake new file mode 100644 index 0000000..1770e5a --- /dev/null +++ b/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj new file mode 100644 index 0000000..79468eb Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj new file mode 100644 index 0000000..43b50c5 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj new file mode 100644 index 0000000..20a1636 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj new file mode 100644 index 0000000..8f71412 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj new file mode 100644 index 0000000..81864f3 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj new file mode 100644 index 0000000..10eda11 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj new file mode 100644 index 0000000..14ffe9a Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj new file mode 100644 index 0000000..c8fbf51 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj new file mode 100644 index 0000000..2427ba0 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj new file mode 100644 index 0000000..841f149 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj new file mode 100644 index 0000000..31d7e72 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj new file mode 100644 index 0000000..7a3c23a Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj new file mode 100644 index 0000000..e80c193 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj new file mode 100644 index 0000000..da15618 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj new file mode 100644 index 0000000..e11c010 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj new file mode 100644 index 0000000..d818ecd Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj new file mode 100644 index 0000000..d962629 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32s3/sleep_cpu.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj new file mode 100644 index 0000000..8caf70a Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj new file mode 100644 index 0000000..4379f28 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj new file mode 100644 index 0000000..959ff52 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj new file mode 100644 index 0000000..9c731b2 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj new file mode 100644 index 0000000..7ffc479 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj new file mode 100644 index 0000000..a4decfa Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/chip_info.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj new file mode 100644 index 0000000..bc5fa9c Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/cpu_region_protect.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj new file mode 100644 index 0000000..76a5826 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_clk_tree.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj new file mode 100644 index 0000000..f6ec339 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_cpu_intr.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj new file mode 100644 index 0000000..ece64fc Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/esp_memprot.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj new file mode 100644 index 0000000..898de27 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/io_mux.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj new file mode 100644 index 0000000..6e25c84 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj new file mode 100644 index 0000000..37ee322 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_clk_init.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj new file mode 100644 index 0000000..7140de7 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_init.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj new file mode 100644 index 0000000..4d02456 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_sleep.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj new file mode 100644 index 0000000..8c6bfad Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/rtc_time.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj new file mode 100644 index 0000000..625e6d8 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/sar_periph_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj new file mode 100644 index 0000000..c78d89e Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32s3/systimer.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj new file mode 100644 index 0000000..6fc05dc Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj new file mode 100644 index 0000000..601db0c Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_memprot_conv.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj new file mode 100644 index 0000000..f743c85 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj new file mode 100644 index 0000000..5b56ba7 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj new file mode 100644 index 0000000..ff559be Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj new file mode 100644 index 0000000..f5591d2 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj new file mode 100644 index 0000000..5e9d3b7 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj new file mode 100644 index 0000000..a7bdfda Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj new file mode 100644 index 0000000..8be3942 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj new file mode 100644 index 0000000..afc185d Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj new file mode 100644 index 0000000..39a7e77 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj new file mode 100644 index 0000000..b830879 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj new file mode 100644 index 0000000..e9bca53 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj new file mode 100644 index 0000000..79db6bd Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj new file mode 100644 index 0000000..888a517 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj new file mode 100644 index 0000000..82ce641 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/cmake_install.cmake b/build/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..f9a7e6d --- /dev/null +++ b/build/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/esp_hw_support/libesp_hw_support.a b/build/esp-idf/esp_hw_support/libesp_hw_support.a new file mode 100644 index 0000000..f73bd89 Binary files /dev/null and b/build/esp-idf/esp_hw_support/libesp_hw_support.a differ diff --git a/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake new file mode 100644 index 0000000..183adfa --- /dev/null +++ b/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake b/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..b3d3006 --- /dev/null +++ b/build/esp-idf/esp_hw_support/mspi_timing_tuning/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake b/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..4d1105e --- /dev/null +++ b/build/esp-idf/esp_hw_support/port/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj new file mode 100644 index 0000000..32a251f Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj new file mode 100644 index 0000000..9230cfd Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj new file mode 100644 index 0000000..d9040a2 Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj new file mode 100644 index 0000000..1ce89cd Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj new file mode 100644 index 0000000..ec73f92 Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32s3/ext_mem_layout.c.obj differ diff --git a/build/esp-idf/esp_mm/cmake_install.cmake b/build/esp-idf/esp_mm/cmake_install.cmake new file mode 100644 index 0000000..45e23ad --- /dev/null +++ b/build/esp-idf/esp_mm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_mm/libesp_mm.a b/build/esp-idf/esp_mm/libesp_mm.a new file mode 100644 index 0000000..057a7bd Binary files /dev/null and b/build/esp-idf/esp_mm/libesp_mm.a differ diff --git a/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj b/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj new file mode 100644 index 0000000..650dd97 Binary files /dev/null and b/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj differ diff --git a/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj b/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj new file mode 100644 index 0000000..2736e8c Binary files /dev/null and b/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj differ diff --git a/build/esp-idf/esp_partition/cmake_install.cmake b/build/esp-idf/esp_partition/cmake_install.cmake new file mode 100644 index 0000000..ef8cb14 --- /dev/null +++ b/build/esp-idf/esp_partition/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_partition/libesp_partition.a b/build/esp-idf/esp_partition/libesp_partition.a new file mode 100644 index 0000000..f4d2219 Binary files /dev/null and b/build/esp-idf/esp_partition/libesp_partition.a differ diff --git a/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj new file mode 100644 index 0000000..c77f988 Binary files /dev/null and b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj differ diff --git a/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj new file mode 100644 index 0000000..b93bd36 Binary files /dev/null and b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj differ diff --git a/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj new file mode 100644 index 0000000..24331cd Binary files /dev/null and b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj differ diff --git a/build/esp-idf/esp_pm/cmake_install.cmake b/build/esp-idf/esp_pm/cmake_install.cmake new file mode 100644 index 0000000..a953da8 --- /dev/null +++ b/build/esp-idf/esp_pm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_pm/libesp_pm.a b/build/esp-idf/esp_pm/libesp_pm.a new file mode 100644 index 0000000..aa11c15 Binary files /dev/null and b/build/esp-idf/esp_pm/libesp_pm.a differ diff --git a/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj b/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj new file mode 100644 index 0000000..2cbd0bf Binary files /dev/null and b/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj differ diff --git a/build/esp-idf/esp_ringbuf/cmake_install.cmake b/build/esp-idf/esp_ringbuf/cmake_install.cmake new file mode 100644 index 0000000..8c88173 --- /dev/null +++ b/build/esp-idf/esp_ringbuf/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj new file mode 100644 index 0000000..9ee49c5 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_esp32s2_esp32s3.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj new file mode 100644 index 0000000..cc1f154 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_cache_writeback_esp32s3.S.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj new file mode 100644 index 0000000..680db6f Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj new file mode 100644 index 0000000..320f7c1 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj new file mode 100644 index 0000000..4558cb0 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj new file mode 100644 index 0000000..8632a74 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj new file mode 100644 index 0000000..229a279 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj new file mode 100644 index 0000000..a0b22de Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj new file mode 100644 index 0000000..2f0786f Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj new file mode 100644 index 0000000..142ddce Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj new file mode 100644 index 0000000..f2e691e Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj new file mode 100644 index 0000000..2e0f31b Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj differ diff --git a/build/esp-idf/esp_rom/cmake_install.cmake b/build/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..714c05a --- /dev/null +++ b/build/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_rom/libesp_rom.a b/build/esp-idf/esp_rom/libesp_rom.a new file mode 100644 index 0000000..186925f Binary files /dev/null and b/build/esp-idf/esp_rom/libesp_rom.a differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj new file mode 100644 index 0000000..4159961 Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj new file mode 100644 index 0000000..74d0db8 Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj new file mode 100644 index 0000000..f9444d5 Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj new file mode 100644 index 0000000..8684664 Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj new file mode 100644 index 0000000..b779c83 Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj differ diff --git a/build/esp-idf/esp_security/cmake_install.cmake b/build/esp-idf/esp_security/cmake_install.cmake new file mode 100644 index 0000000..0444bfb --- /dev/null +++ b/build/esp-idf/esp_security/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_security/libesp_security.a b/build/esp-idf/esp_security/libesp_security.a new file mode 100644 index 0000000..411965b Binary files /dev/null and b/build/esp-idf/esp_security/libesp_security.a differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj new file mode 100644 index 0000000..65d8f79 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj new file mode 100644 index 0000000..398a28d Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj new file mode 100644 index 0000000..d33a133 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj new file mode 100644 index 0000000..f888e4b Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj new file mode 100644 index 0000000..2b4d139 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj new file mode 100644 index 0000000..f75cdbe Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj new file mode 100644 index 0000000..0dc15ed Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj new file mode 100644 index 0000000..7964e4b Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj new file mode 100644 index 0000000..b665968 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj new file mode 100644 index 0000000..6943250 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj new file mode 100644 index 0000000..518eb36 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj new file mode 100644 index 0000000..187f810 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj new file mode 100644 index 0000000..426d0b9 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj new file mode 100644 index 0000000..a0c61f7 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj new file mode 100644 index 0000000..180b083 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj new file mode 100644 index 0000000..f0c4213 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj new file mode 100644 index 0000000..9bf90b8 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj new file mode 100644 index 0000000..a9ec652 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj new file mode 100644 index 0000000..354bcf5 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj new file mode 100644 index 0000000..14f55d8 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj new file mode 100644 index 0000000..2876693 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj new file mode 100644 index 0000000..6b73d22 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj new file mode 100644 index 0000000..6faba9f Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj new file mode 100644 index 0000000..1f81e0d Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj new file mode 100644 index 0000000..d35b221 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/apb_backup_dma.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj new file mode 100644 index 0000000..0b1d1ca Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/cache_err_int.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj new file mode 100644 index 0000000..eca21b5 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/clk.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj new file mode 100644 index 0000000..c62de96 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/highint_hdl.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj new file mode 100644 index 0000000..4079e0c Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/reset_reason.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj new file mode 100644 index 0000000..0113e48 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32s3/system_internal.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj new file mode 100644 index 0000000..819ed78 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj new file mode 100644 index 0000000..c6a3a87 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj new file mode 100644 index 0000000..7fc77f7 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj new file mode 100644 index 0000000..a958cd0 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj new file mode 100644 index 0000000..7a71041 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj new file mode 100644 index 0000000..774811a Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj new file mode 100644 index 0000000..751c8eb Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj new file mode 100644 index 0000000..4e81b4e Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj differ diff --git a/build/esp-idf/esp_system/cmake_install.cmake b/build/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..62f60f5 --- /dev/null +++ b/build/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/esp_system/ld/linker_script_generator.cmake b/build/esp-idf/esp_system/ld/linker_script_generator.cmake new file mode 100644 index 0000000..845c872 --- /dev/null +++ b/build/esp-idf/esp_system/ld/linker_script_generator.cmake @@ -0,0 +1,9 @@ +execute_process(COMMAND "${CC}" "-C" "-P" "-x" "c" "-E" "-I" "${CONFIG_DIR}" "-I" "${LD_DIR}" "${SOURCE}" + RESULT_VARIABLE RET_CODE + OUTPUT_VARIABLE PREPROCESSED_LINKER_SCRIPT + ERROR_VARIABLE ERROR_VAR) +if(RET_CODE AND NOT RET_CODE EQUAL 0) + message(FATAL_ERROR "Can't generate ${TARGET}\nRET_CODE: ${RET_CODE}\nERROR_MESSAGE: ${ERROR_VAR}") +endif() +string(REPLACE "\\n" "\n" TEXT "${PREPROCESSED_LINKER_SCRIPT}") +file(WRITE "${TARGET}" "${TEXT}") diff --git a/build/esp-idf/esp_system/ld/memory.ld b/build/esp-idf/esp_system/ld/memory.ld new file mode 100644 index 0000000..801c141 --- /dev/null +++ b/build/esp-idf/esp_system/ld/memory.ld @@ -0,0 +1,171 @@ +/* + + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/** + + * ESP32-S3 Linker Script Memory Layout + + * This file describes the memory layout (memory blocks) by virtual memory addresses. + + * This linker script is passed through the C preprocessor to include configuration options. + + * Please use preprocessor features sparingly! + + * Restrict to simple macros with numeric values, and/or #if/#endif blocks. + + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header + + */ + +/* List of deprecated options */ +/* + + * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* + + * PMP region granularity size + + * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones + + * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, + + * the PMP granularity is 2^G+2 bytes. + + */ +/* CPU instruction prefetch padding size for memory protection scenario */ +/* Memory alignment size for PMS */ + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* + + * 40370000 <- IRAM/Icache -> 40378000 <- D/IRAM (I) -> 403E0000 + + * 3FC88000 <- D/IRAM (D) -> 3FCF0000 <- DRAM/DCache -> 3FD00000 + + * + + * Startup code uses the IRAM from 0x403B9000 to 0x403E0000, which is not available for static + + * memory, but can only be used after app starts. + + * + + * D cache use the memory from high address, so when it's configured to 16K/32K, the region + + * 0x3FCF000 ~ (3FD00000 - DATA_CACHE_SIZE) should be available. This region is not used as + + * static memory, leaving to the heap. + + */ +MEMORY +{ + /** + + * All these values assume the flash cache is on, and have the blocks this uses subtracted from the length + + * of the various regions. The 'data access port' dram/drom regions map to the same iram/irom regions but + + * are connected to the data port of the CPU and eg allow byte-wise access. + + */ + /* IRAM for PRO CPU. */ + iram0_0_seg (RX) : org = (0x40370000 + 0x4000), len = (((0x403CB700 - (0x40378000 - 0x3FC88000)) - 0x3FC88000) + 0x8000 - 0x4000) + /* Flash mapped instruction data */ + iram0_2_seg (RX) : org = 0x42000020, len = 0x800000-0x20 + /** + + * (0x20 offset above is a convenience for the app binary image generation. + + * Flash cache has 64KB pages. The .bin file which is flashed to the chip + + * has a 0x18 byte file header, and each segment has a 0x08 byte segment + + * header. Setting this offset makes it simple to meet the flash cache MMU's + + * constraint that (paddr % 64KB == vaddr % 64KB).) + + */ + /** + + * Shared data RAM, excluding memory reserved for ROM bss/data/stack. + + * Enabling Bluetooth & Trace Memory features in menuconfig will decrease the amount of RAM available. + + */ + dram0_0_seg (RW) : org = (0x3FC88000), len = ((0x403CB700 - (0x40378000 - 0x3FC88000)) - 0x3FC88000) + /* Flash mapped constant data */ + drom0_0_seg (R) : org = 0x3C000020, len = 0x2000000-0x20 + /* (See iram0_2_seg for meaning of 0x20 offset in the above.) */ + /** + + * RTC fast memory (executable). Persists over deep sleep. + + */ + rtc_iram_seg(RWX) : org = 0x600fe000, len = 0x2000 - (0 + (24)) + /* We reduced the size of rtc_iram_seg by RESERVE_RTC_MEM value. + + It reserves the amount of RTC fast memory that we use for this memory segment. + + This segment is intended for keeping: + + - (lower addr) rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). + + - (higher addr) bootloader rtc data (s_bootloader_retain_mem, when a Kconfig option is on). + + The aim of this is to keep data that will not be moved around and have a fixed address. + + */ + rtc_reserved_seg(RW) : org = 0x600fe000 + 0x2000 - (0 + (24)), len = (0 + (24)) + /** + + * RTC slow memory (data accessible). Persists over deep sleep. + + * Start of RTC slow memory is reserved for ULP co-processor code + data, if enabled. + + */ + rtc_slow_seg(RW) : org = 0x50000000 , len = 0x2000 + /** + + * `extern_ram_seg` and `drom0_0_seg` share the same bus and the address region. + + * A dummy section is used to avoid overlap. See `.ext_ram.dummy` in `sections.ld.in` + + */ + extern_ram_seg(RWX) : org = 0x3c000020 , len = 0x2000000-0x20 +} +_diram_i_start = 0x40378000; +_heap_start = _heap_low_start; +/* Heap ends at top of dram0_0_seg */ +_heap_end = 0x40000000; +_data_seg_org = ORIGIN(rtc_data_seg); +/* RTC fast memory shares the same range for both data and instructions */ +REGION_ALIAS("rtc_data_seg", rtc_iram_seg ); +REGION_ALIAS("rtc_data_location", rtc_slow_seg ); +REGION_ALIAS("default_code_seg", iram0_2_seg); +REGION_ALIAS("default_rodata_seg", drom0_0_seg); +/** + + * If rodata default segment is placed in `drom0_0_seg`, then flash's first rodata section must + + * also be first in the segment. + + */ + ASSERT(_flash_rodata_dummy_start == ORIGIN(default_rodata_seg), + ".flash_rodata_dummy section must be placed at the beginning of the rodata segment.") diff --git a/build/esp-idf/esp_system/ld/sections.ld.in b/build/esp-idf/esp_system/ld/sections.ld.in new file mode 100644 index 0000000..aa689e4 --- /dev/null +++ b/build/esp-idf/esp_system/ld/sections.ld.in @@ -0,0 +1,628 @@ +/* + + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* + + * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD + + * + + * SPDX-License-Identifier: Apache-2.0 + + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header + + */ + +/* List of deprecated options */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* + + * PMP region granularity size + + * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones + + * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, + + * the PMP granularity is 2^G+2 bytes. + + */ +/* CPU instruction prefetch padding size for memory protection scenario */ +/* Memory alignment size for PMS */ + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* Default entry point */ +ENTRY(call_start_cpu0); +SECTIONS +{ + /** + + * RTC fast memory holds RTC wake stub code, + + * including from any source file named rtc_wake_stub*.c + + */ + .rtc.text : + { + + . = ALIGN(4); + _rtc_fast_start = ABSOLUTE(.); + + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + HIDDEN(_rtc_code_start = .); + *(.rtc.entry.literal .rtc.entry.text) + mapping[rtc_text] + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + *(.rtc_text_end_test) + HIDDEN(_rtc_code_end = .); + /* Padding for possible CPU prefetch + 4B alignment for PMS split lines. */ + . = ((_rtc_code_end - _rtc_code_start) == 0) ? + ALIGN(0) : 16 + ALIGN(4); + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_seg + /** + + * This section located in RTC FAST Memory area. + + * It holds data marked with RTC_FAST_ATTR attribute. + + * See the file "esp_attr.h" for more information. + + */ + .rtc.force_fast : + { + + . = ALIGN(4); + _rtc_force_fast_start = ABSOLUTE(.); + mapping[rtc_force_fast] + *(.rtc.force_fast .rtc.force_fast.*) + + . = ALIGN(4); + _rtc_force_fast_end = ABSOLUTE(.); + } > rtc_data_seg + /** + + * RTC data section holds RTC wake stub + + * data/rodata, including from any source file + + * named rtc_wake_stub*.c and the data marked with + + * RTC_DATA_ATTR, RTC_RODATA_ATTR attributes. + + * The memory location of the data is dependent on + + * CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM option. + + */ + .rtc.data : + { + _rtc_data_start = ABSOLUTE(.); + mapping[rtc_data] + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + _rtc_data_end = ABSOLUTE(.); + } > rtc_data_location + /* RTC bss, from any source file named rtc_wake_stub*.c */ + .rtc.bss (NOLOAD) : + { + _rtc_bss_start = ABSOLUTE(.); + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + mapping[rtc_bss] + _rtc_bss_end = ABSOLUTE(.); + } > rtc_data_location + /** + + * This section holds data that should not be initialized at power up + + * and will be retained during deep sleep. + + * User data marked with RTC_NOINIT_ATTR will be placed + + * into this section. See the file "esp_attr.h" for more information. + + * The memory location of the data is dependent on + + * CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM option. + + */ + .rtc_noinit (NOLOAD): + { + + . = ALIGN(4); + _rtc_noinit_start = ABSOLUTE(.); + *(.rtc_noinit .rtc_noinit.*) + + . = ALIGN(4); + _rtc_noinit_end = ABSOLUTE(.); + } > rtc_data_location + /** + + * This section located in RTC SLOW Memory area. + + * It holds data marked with RTC_SLOW_ATTR attribute. + + * See the file "esp_attr.h" for more information. + + */ + .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 + /** + + * This section holds RTC data that should have fixed addresses. + + * The data are not initialized at power-up and are retained during deep + + * sleep. + + */ + .rtc_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_reserved_start = ABSOLUTE(.); + /** + + * New data can only be added here to ensure existing data are not moved. + + * Because data have adhered to the end of the segment and code is relied + + * on it. + + * >> put new data here << + + */ + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_reserved_end = ABSOLUTE(.); + } > rtc_reserved_seg + _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; + ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), + "RTC reserved segment data does not fit.") + /* Get size of rtc slow data based on rtc_data_location alias */ + _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_slow_end - _rtc_data_start) + : (_rtc_force_slow_end - _rtc_force_slow_start); + _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_fast_end - _rtc_fast_start) + : (_rtc_noinit_end - _rtc_fast_start); + ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), + "RTC_SLOW segment data does not fit.") + ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), + "RTC_FAST segment data does not fit.") + /* Send .iram0 code to iram */ + .iram0.vectors : + { + _iram_start = ABSOLUTE(.); + /* Vectors go to IRAM */ + _vector_table = 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; + KEEP(*(._invalid_pc_placeholder.text)); + *(.*Vector.literal) + } > iram0_0_seg + .iram0.text : + { + /* Code marked as running out of IRAM */ + _iram_text_start = ABSOLUTE(.); + mapping[iram0_text] + } > iram0_0_seg + /** + + * This section is required to skip .iram0.text area because iram0_0_seg and + + * dram0_0_seg reflect the same address space on different buses. + + */ + .dram0.dummy (NOLOAD): + { + . = ORIGIN(dram0_0_seg) + MAX(_iram_end - _diram_i_start, 0); + } > dram0_0_seg + .dram0.data : + { + _data_start = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + mapping[dram0_data] + _data_end = ABSOLUTE(.); + } > dram0_0_seg + /** + + * This section holds data that should not be initialized at power up. + + * The section located in Internal SRAM memory region. The macro _NOINIT + + * can be used as attribute to place data into this section. + + * See the "esp_attr.h" file for more information. + + */ + .noinit (NOLOAD): + { + + . = ALIGN(4); + _noinit_start = ABSOLUTE(.); + *(.noinit .noinit.*) + + . = ALIGN(4); + _noinit_end = ABSOLUTE(.); + } > dram0_0_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + + . = ALIGN(8); + _bss_start = ABSOLUTE(.); + /** + + * ldgen places all bss-related data to mapping[dram0_bss] + + * (See components/esp_system/app.lf). + + */ + mapping[dram0_bss] + + . = ALIGN(8); + _bss_end = ABSOLUTE(.); + } > dram0_0_seg + ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") + .flash.text : + { + _stext = .; + /** + + * Mark the start of flash.text. + + * This can be used by the MMU driver to maintain the virtual address. + + */ + _instruction_reserved_start = ABSOLUTE(.); + _text_start = ABSOLUTE(.); + mapping[flash_text] + *(.stub) + *(.gnu.warning) + *(.gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + /** + + * CPU will try to prefetch up to 16 bytes of of instructions. + + * This means that any configuration (e.g. MMU, PMS) must allow + + * safe access to up to 16 bytes after the last real instruction, add + + * dummy bytes to ensure this + + */ + . += 16; + _text_end = ABSOLUTE(.); + /** + + * Mark the flash.text end. + + * This can be used for MMU driver to maintain virtual address. + + */ + _instruction_reserved_end = ABSOLUTE(.); + _etext = .; + /** + + * Similar to _iram_start, this symbol goes here so it is + + * resolved by addr2line in preference to the first symbol in + + * the flash.text segment. + + */ + _flash_cache_start = ABSOLUTE(0); + } > default_code_seg + /** + + * Dummy section represents the .flash.text section but in default_rodata_seg. + + * Thus, it must have its alignment and (at least) its size. + + */ + .flash_rodata_dummy (NOLOAD): + { + _flash_rodata_dummy_start = ABSOLUTE(.); + . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); + /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ + . = ALIGN(0x10000) + 0x20; + } > default_rodata_seg + .flash.appdesc : ALIGN(0x10) + { + /** + + * Mark flash.rodata start. + + * This can be used for mmu driver to maintain virtual address + + */ + _rodata_reserved_start = ABSOLUTE(.); + _rodata_start = ABSOLUTE(.); + /* !DO NOT PUT ANYTHING BEFORE THIS! */ + /* Should be the first. App version info. */ + *(.rodata_desc .rodata_desc.*) + /* Should be the second. Custom app version info. */ + *(.rodata_custom_desc .rodata_custom_desc.*) + /** + + * Create an empty gap within this section. Thanks to this, the end of this + + * section will match .flah.rodata's begin address. Thus, both sections + + * will be merged when creating the final bin image. + + */ + . = ALIGN(ALIGNOF(.flash.rodata)); + } > default_rodata_seg + ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") + .flash.rodata : ALIGN(0x10) + { + _flash_rodata_start = ABSOLUTE(.); + mapping[flash_rodata] + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + /* C++ exception handlers table. */ + + . = ALIGN(4); + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + + . = ALIGN(4); + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + /** + + * C++ constructor tables. + + * + + * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. + + */ + + . = ALIGN(4); + __init_array_start = ABSOLUTE(.); + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors SORT(.ctors.*))) + __init_array_end = ABSOLUTE(.); + /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ + + . = ALIGN(4); + soc_reserved_memory_region_start = ABSOLUTE(.); + KEEP (*(.reserved_memory_address)) + soc_reserved_memory_region_end = ABSOLUTE(.); + /* System init functions registered via ESP_SYSTEM_INIT_FN */ + + . = ALIGN(4); + _esp_system_init_fn_array_start = ABSOLUTE(.); + KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) + _esp_system_init_fn_array_end = ABSOLUTE(.); + _rodata_end = ABSOLUTE(.); + /* Literals are also RO data. */ + _lit4_start = ABSOLUTE(.); + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + _lit4_end = ABSOLUTE(.); + /* TLS data. */ + + . = ALIGN(4); + _thread_local_start = ABSOLUTE(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + } > default_rodata_seg + _flash_rodata_align = ALIGNOF(.flash.rodata); + /** + + * This section contains all the rodata that is not used + + * at runtime, helping to avoid an increase in binary size. + + */ + .flash.rodata_noload (NOLOAD) : + { + /** + + * This symbol marks the end of flash.rodata. It can be utilized by the MMU + + * driver to maintain the virtual address. + + * NOLOAD rodata may not be included in this section. + + */ + _rodata_reserved_end = ABSOLUTE(.); + mapping[rodata_noload] + } > default_rodata_seg + /** + + * Dummy section to skip flash rodata sections. + + * Because to `extern_ram_seg` and `drom0_0_seg` are on the same bus + + */ + .ext_ram.dummy (NOLOAD): + { + . = ORIGIN(extern_ram_seg); + . = . + (_rodata_reserved_end - _flash_rodata_dummy_start); + . = ALIGN (0x10000); + } > extern_ram_seg + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + /* Padding for possible CPU prefetch + alignment for PMS split lines */ + . += 16; + . = ALIGN(256); + /* iram_end_test section exists for use by memprot unit tests only */ + *(.iram_end_test) + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + mapping[iram0_data] + + . = ALIGN(4); + _iram_data_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.bss (NOLOAD) : + { + + . = ALIGN(4); + _iram_bss_start = ABSOLUTE(.); + mapping[iram0_bss] + _iram_bss_end = ABSOLUTE(.); + + . = ALIGN(4); + _iram_end = ABSOLUTE(.); + } > iram0_0_seg + /* Marks the end of data, bss and possibly rodata */ + .dram0.heap_start (NOLOAD) : + { + /* Lowest possible start address for the heap */ + + . = ALIGN(8); + _heap_low_start = ABSOLUTE(.); + } > dram0_0_seg + /** + + * This section is not included in the binary image; it is only present in the ELF file. + + * It is used to keep certain symbols in the ELF file. + + */ + .noload 0 (INFO) : + { + _noload_keep_in_elf_start = ABSOLUTE(.); + KEEP(*(.noload_keep_in_elf .noload_keep_in_elf.*)) + mapping[noload_keep_in_elf] + _noload_keep_in_elf_end = ABSOLUTE(.); + } + /* DWARF 1 */ + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + /* GNU DWARF 1 extensions */ + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + /* DWARF 1.1 and DWARF 2 */ + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + /* DWARF 2 */ + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + /* DWARF 3 */ + .debug_ranges 0 : { *(.debug_ranges) } + /* SGI/MIPS DWARF 2 extensions */ + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + /* GNU DWARF 2 extensions */ + .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } + .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } + /* DWARF 4 */ + .debug_types 0 : { *(.debug_types) } + /* DWARF 5 */ + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .comment 0 : { *(.comment) } + .note.GNU-stack 0: { *(.note.GNU-stack) } +/** + + * .xt.prop and .xt.lit sections will be used by the debugger and disassembler + + * to get more information about raw data present in the code. + + * Indeed, it may be required to add some padding at some points in the code + + * in order to align a branch/jump destination on a particular bound. + + * Padding these instructions will generate null bytes that shall be + + * interpreted as data, and not code by the debugger or disassembler. + + * This section will only be present in the ELF file, not in the final binary + + * For more details, check GCC-212 + + */ + .xtensa.info 0: { *(.xtensa.info) } + .xt.prop 0 : { *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) } + .xt.lit 0 : { *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) } + /DISCARD/ : + { + *(.fini) + *(.eh_frame_hdr) + *(.eh_frame) + } +} +ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), + "IRAM0 segment data does not fit.") +ASSERT(((_heap_low_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") diff --git a/build/esp-idf/esp_system/libesp_system.a b/build/esp-idf/esp_system/libesp_system.a new file mode 100644 index 0000000..e81e0d1 Binary files /dev/null and b/build/esp-idf/esp_system/libesp_system.a differ diff --git a/build/esp-idf/esp_system/port/cmake_install.cmake b/build/esp-idf/esp_system/port/cmake_install.cmake new file mode 100644 index 0000000..8c0e070 --- /dev/null +++ b/build/esp-idf/esp_system/port/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake b/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake new file mode 100644 index 0000000..3d64e64 --- /dev/null +++ b/build/esp-idf/esp_system/port/soc/esp32s3/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj new file mode 100644 index 0000000..be6e25c Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj new file mode 100644 index 0000000..c11bf68 Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj new file mode 100644 index 0000000..5c7dc17 Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj new file mode 100644 index 0000000..247698e Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj new file mode 100644 index 0000000..413de7a Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj new file mode 100644 index 0000000..aa95013 Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj differ diff --git a/build/esp-idf/esp_timer/cmake_install.cmake b/build/esp-idf/esp_timer/cmake_install.cmake new file mode 100644 index 0000000..26c2fb4 --- /dev/null +++ b/build/esp-idf/esp_timer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esp_timer/libesp_timer.a b/build/esp-idf/esp_timer/libesp_timer.a new file mode 100644 index 0000000..52876d5 Binary files /dev/null and b/build/esp-idf/esp_timer/libesp_timer.a differ diff --git a/build/esp-idf/esptool_py/app-flash_args.in b/build/esp-idf/esptool_py/app-flash_args.in new file mode 100644 index 0000000..b3f3b57 --- /dev/null +++ b/build/esp-idf/esptool_py/app-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 $.bin \ No newline at end of file diff --git a/build/esp-idf/esptool_py/cmake_install.cmake b/build/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..c64fa3d --- /dev/null +++ b/build/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/esptool_py/flasher_args.json.in b/build/esp-idf/esptool_py/flasher_args.json.in new file mode 100644 index 0000000..f32f086 --- /dev/null +++ b/build/esp-idf/esptool_py/flasher_args.json.in @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "2MB", + "--flash_freq", "80m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "80m" + }, + "flash_files" : { + "0x0" : "bootloader/bootloader.bin", + "0x10000" : "$.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "$.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : true, + "chip" : "esp32s3" + } +} diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj new file mode 100644 index 0000000..44ad74b Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj new file mode 100644 index 0000000..59e7738 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj new file mode 100644 index 0000000..51afa67 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj new file mode 100644 index 0000000..3577999 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj new file mode 100644 index 0000000..5293eb2 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj new file mode 100644 index 0000000..80af1f6 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj new file mode 100644 index 0000000..c7b76e0 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj new file mode 100644 index 0000000..e8d7906 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj new file mode 100644 index 0000000..fa24df1 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj new file mode 100644 index 0000000..5b10bcd Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj new file mode 100644 index 0000000..f1e232a Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj new file mode 100644 index 0000000..d454f22 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj new file mode 100644 index 0000000..c7a5930 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj new file mode 100644 index 0000000..02d3161 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj new file mode 100644 index 0000000..06590c3 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj new file mode 100644 index 0000000..17f1cbb Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj new file mode 100644 index 0000000..5af7604 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj differ diff --git a/build/esp-idf/freertos/cmake_install.cmake b/build/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..6e16020 --- /dev/null +++ b/build/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/freertos/libfreertos.a b/build/esp-idf/freertos/libfreertos.a new file mode 100644 index 0000000..1e80017 Binary files /dev/null and b/build/esp-idf/freertos/libfreertos.a differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj new file mode 100644 index 0000000..6e18649 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj new file mode 100644 index 0000000..691d267 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj new file mode 100644 index 0000000..8b0a3da Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj new file mode 100644 index 0000000..2a77ec4 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj new file mode 100644 index 0000000..0a041fe Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj new file mode 100644 index 0000000..2387f6f Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj new file mode 100644 index 0000000..9def336 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cam_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj new file mode 100644 index 0000000..4d9b265 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj new file mode 100644 index 0000000..cb3e49f Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj new file mode 100644 index 0000000..6551f33 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj new file mode 100644 index 0000000..78b029d Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/clk_tree_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj new file mode 100644 index 0000000..7665dd1 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/efuse_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj new file mode 100644 index 0000000..3294541 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/rtc_cntl_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj new file mode 100644 index 0000000..6f8a8a0 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32s3/touch_sensor_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj new file mode 100644 index 0000000..8901691 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj new file mode 100644 index 0000000..ecf64f4 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj new file mode 100644 index 0000000..b92f47a Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj new file mode 100644 index 0000000..ee9c0c5 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj new file mode 100644 index 0000000..7995ee1 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj new file mode 100644 index 0000000..b1b117d Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj new file mode 100644 index 0000000..b23e054 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj new file mode 100644 index 0000000..3ae8d19 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj new file mode 100644 index 0000000..242d44f Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lcd_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj new file mode 100644 index 0000000..8477da8 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj new file mode 100644 index 0000000..74e2cce Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj new file mode 100644 index 0000000..4d14eef Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj new file mode 100644 index 0000000..27518e1 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj new file mode 100644 index 0000000..a708be0 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj new file mode 100644 index 0000000..66b8fb5 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj new file mode 100644 index 0000000..6710d5d Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj new file mode 100644 index 0000000..8c524c1 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj new file mode 100644 index 0000000..7e4883b Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj new file mode 100644 index 0000000..5c94279 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj new file mode 100644 index 0000000..1f64495 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj new file mode 100644 index 0000000..43e75fb Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj new file mode 100644 index 0000000..9beaaa8 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj new file mode 100644 index 0000000..c3e818a Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj new file mode 100644 index 0000000..2d4538e Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj new file mode 100644 index 0000000..3ac240b Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj new file mode 100644 index 0000000..149fb52 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj new file mode 100644 index 0000000..03d46a2 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj new file mode 100644 index 0000000..2e5bc94 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj new file mode 100644 index 0000000..bbbfc77 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj new file mode 100644 index 0000000..637038f Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj new file mode 100644 index 0000000..3345e6a Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/systimer_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj new file mode 100644 index 0000000..100b4c0 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj new file mode 100644 index 0000000..8e81302 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sens_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj new file mode 100644 index 0000000..07e4436 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj new file mode 100644 index 0000000..a4cb90c Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj new file mode 100644 index 0000000..b3e74eb Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj new file mode 100644 index 0000000..2533d90 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj new file mode 100644 index 0000000..aef19b0 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj new file mode 100644 index 0000000..7e2e08e Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_dwc_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj new file mode 100644 index 0000000..31b4e17 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj new file mode 100644 index 0000000..e6f4f65 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_wrap_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj new file mode 100644 index 0000000..6c170c3 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/xt_wdt_hal.c.obj differ diff --git a/build/esp-idf/hal/cmake_install.cmake b/build/esp-idf/hal/cmake_install.cmake new file mode 100644 index 0000000..9be8c86 --- /dev/null +++ b/build/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/hal/libhal.a b/build/esp-idf/hal/libhal.a new file mode 100644 index 0000000..b74ad85 Binary files /dev/null and b/build/esp-idf/hal/libhal.a differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj new file mode 100644 index 0000000..85cf6fc Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj new file mode 100644 index 0000000..b84c01d Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj new file mode 100644 index 0000000..779f7a8 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj new file mode 100644 index 0000000..3740517 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj new file mode 100644 index 0000000..9629342 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32s3/memory_layout.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj new file mode 100644 index 0000000..9f484e7 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj new file mode 100644 index 0000000..e7ac84b Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj differ diff --git a/build/esp-idf/heap/cmake_install.cmake b/build/esp-idf/heap/cmake_install.cmake new file mode 100644 index 0000000..58bd011 --- /dev/null +++ b/build/esp-idf/heap/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/heap/libheap.a b/build/esp-idf/heap/libheap.a new file mode 100644 index 0000000..da374f7 Binary files /dev/null and b/build/esp-idf/heap/libheap.a differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj new file mode 100644 index 0000000..7824ce9 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj new file mode 100644 index 0000000..070c23c Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj new file mode 100644 index 0000000..80af658 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj new file mode 100644 index 0000000..c87436c Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj new file mode 100644 index 0000000..611f419 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj new file mode 100644 index 0000000..5fa8a08 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj new file mode 100644 index 0000000..dd37a04 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj new file mode 100644 index 0000000..5687496 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj new file mode 100644 index 0000000..e390a78 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj new file mode 100644 index 0000000..6243661 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj new file mode 100644 index 0000000..451d219 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj new file mode 100644 index 0000000..f737cd8 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj new file mode 100644 index 0000000..6458600 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj new file mode 100644 index 0000000..46a4724 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj differ diff --git a/build/esp-idf/log/cmake_install.cmake b/build/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..3dea68f --- /dev/null +++ b/build/esp-idf/log/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/log/liblog.a b/build/esp-idf/log/liblog.a new file mode 100644 index 0000000..df03cd5 Binary files /dev/null and b/build/esp-idf/log/liblog.a differ diff --git a/build/esp-idf/main/cmake_install.cmake b/build/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..fbf92f3 --- /dev/null +++ b/build/esp-idf/main/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj new file mode 100644 index 0000000..91e4015 Binary files /dev/null and b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj differ diff --git a/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj new file mode 100644 index 0000000..a3bf309 Binary files /dev/null and b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj differ diff --git a/build/esp-idf/mbedtls/cmake_install.cmake b/build/esp-idf/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..cbab455 --- /dev/null +++ b/build/esp-idf/mbedtls/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/mbedtls/libmbedtls.a b/build/esp-idf/mbedtls/libmbedtls.a new file mode 100644 index 0000000..a77834a Binary files /dev/null and b/build/esp-idf/mbedtls/libmbedtls.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake new file mode 100644 index 0000000..14ec7c1 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake @@ -0,0 +1,46 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake") + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj new file mode 100644 index 0000000..f7e9bdf Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj new file mode 100644 index 0000000..7cc0fc9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj new file mode 100644 index 0000000..68e3f6e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake new file mode 100644 index 0000000..a270b24 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ DIR_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest" FILES_MATCHING REGEX "/[^/]*\\.h$") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a new file mode 100644 index 0000000..154dd89 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj new file mode 100644 index 0000000..5e027fb Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj new file mode 100644 index 0000000..ac3f0b4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake new file mode 100644 index 0000000..4144d89 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ DIR_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/:D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m" FILES_MATCHING REGEX "/[^/]*\\.h$") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a new file mode 100644 index 0000000..91c6ed6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..98fb907 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake @@ -0,0 +1,48 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake") + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake new file mode 100644 index 0000000..b1096d2 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake @@ -0,0 +1,146 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/mbedtls" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aes.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aria.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1write.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/base64.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/bignum.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/block_cipher.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/build_info.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/camellia.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ccm.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chacha20.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/check_config.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cipher.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cmac.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/compat-2.x.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_from_psa.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_from_legacy.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_superset_legacy.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_ssl.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_x509.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_psa.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/constant_time.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/debug.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/des.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/dhm.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdh.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecp.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/entropy.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/error.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/gcm.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hkdf.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/lms.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md5.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/oid.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pem.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pk.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_time.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_util.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/poly1305.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/private_access.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/psa_util.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/rsa.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha1.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha256.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha3.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha512.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/threading.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/timing.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/version.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_csr.h" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/psa" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/build_info.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_auto_enabled.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_dependencies.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_key_pair_types.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_synonyms.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_composites.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_key_derivation.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_primitives.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_compat.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_config.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_common.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_composites.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_key_derivation.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_primitives.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_extra.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_legacy.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_platform.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_se_driver.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_sizes.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_struct.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_types.h" + "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_values.h" + ) +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj new file mode 100644 index 0000000..9adc095 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj new file mode 100644 index 0000000..64df058 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj new file mode 100644 index 0000000..36b94ce Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj new file mode 100644 index 0000000..bcc5360 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj new file mode 100644 index 0000000..71159dc Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj new file mode 100644 index 0000000..8328e2c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj new file mode 100644 index 0000000..48dac8b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj new file mode 100644 index 0000000..7838bd4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj new file mode 100644 index 0000000..3f6054a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj new file mode 100644 index 0000000..d4c13db Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj new file mode 100644 index 0000000..bab39d6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj new file mode 100644 index 0000000..0783a8d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj new file mode 100644 index 0000000..49f2b18 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj new file mode 100644 index 0000000..45ecd58 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj new file mode 100644 index 0000000..f50394f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj new file mode 100644 index 0000000..1bcb498 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj new file mode 100644 index 0000000..7579e44 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj new file mode 100644 index 0000000..4c47a90 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj new file mode 100644 index 0000000..9539e1f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj new file mode 100644 index 0000000..48dfd30 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj new file mode 100644 index 0000000..961453a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj new file mode 100644 index 0000000..986793c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj new file mode 100644 index 0000000..9f7777d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj new file mode 100644 index 0000000..f7e782b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj new file mode 100644 index 0000000..b693699 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj new file mode 100644 index 0000000..27eb959 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj new file mode 100644 index 0000000..9e3cdca Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj new file mode 100644 index 0000000..efdf376 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj new file mode 100644 index 0000000..a5e6528 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj new file mode 100644 index 0000000..41598c1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj new file mode 100644 index 0000000..e4aa2df Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj new file mode 100644 index 0000000..23c06bc Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj new file mode 100644 index 0000000..33acef7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj new file mode 100644 index 0000000..f88a488 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj new file mode 100644 index 0000000..83422e1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj new file mode 100644 index 0000000..463a6ca Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj new file mode 100644 index 0000000..e2c4f3f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj new file mode 100644 index 0000000..43d92d1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj new file mode 100644 index 0000000..f34400f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj new file mode 100644 index 0000000..1c2e0c3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj new file mode 100644 index 0000000..709fe00 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj new file mode 100644 index 0000000..f76f569 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj new file mode 100644 index 0000000..7e8e4e6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj new file mode 100644 index 0000000..cf88256 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj new file mode 100644 index 0000000..65f7f25 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj new file mode 100644 index 0000000..c1a7c31 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj new file mode 100644 index 0000000..2f1b5b3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj new file mode 100644 index 0000000..d89c45a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj new file mode 100644 index 0000000..8fb98ba Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj new file mode 100644 index 0000000..21a08b0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj new file mode 100644 index 0000000..4e79ae3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj new file mode 100644 index 0000000..39b7da0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj new file mode 100644 index 0000000..8ad33fb Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj new file mode 100644 index 0000000..4cc3dc1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj new file mode 100644 index 0000000..a9af7d0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj new file mode 100644 index 0000000..1b9fd84 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj new file mode 100644 index 0000000..395eef3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj new file mode 100644 index 0000000..6a42576 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj new file mode 100644 index 0000000..a4b1e3f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj new file mode 100644 index 0000000..2b3f947 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj new file mode 100644 index 0000000..ba8e291 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj new file mode 100644 index 0000000..c6ede87 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj new file mode 100644 index 0000000..bc81af9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj new file mode 100644 index 0000000..2266107 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj new file mode 100644 index 0000000..ba00939 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj new file mode 100644 index 0000000..bcdba1c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj new file mode 100644 index 0000000..d248dae Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj new file mode 100644 index 0000000..726ed50 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj new file mode 100644 index 0000000..2b38386 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj new file mode 100644 index 0000000..4484306 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj new file mode 100644 index 0000000..77846b1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj new file mode 100644 index 0000000..25f032f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj new file mode 100644 index 0000000..1bc4cfb Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj new file mode 100644 index 0000000..d9393e1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj new file mode 100644 index 0000000..c961b33 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj new file mode 100644 index 0000000..e2a9e2a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj new file mode 100644 index 0000000..a3204c1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj new file mode 100644 index 0000000..46b8e54 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj new file mode 100644 index 0000000..1e94fde Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj new file mode 100644 index 0000000..8a1b996 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj new file mode 100644 index 0000000..bd5ad76 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj new file mode 100644 index 0000000..5d79f5b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj new file mode 100644 index 0000000..26c719f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj new file mode 100644 index 0000000..e25db5a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj new file mode 100644 index 0000000..d262ff4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj new file mode 100644 index 0000000..4d791cf Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj new file mode 100644 index 0000000..fb9a74f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj new file mode 100644 index 0000000..4c36954 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj new file mode 100644 index 0000000..89a594e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj new file mode 100644 index 0000000..5e436c2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj new file mode 100644 index 0000000..6d749e2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj new file mode 100644 index 0000000..2212dd8 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj new file mode 100644 index 0000000..d783a27 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj new file mode 100644 index 0000000..47d5746 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj new file mode 100644 index 0000000..bca19e4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj new file mode 100644 index 0000000..daf0d04 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj new file mode 100644 index 0000000..8741652 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj new file mode 100644 index 0000000..d7fbb61 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj new file mode 100644 index 0000000..8f30551 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj new file mode 100644 index 0000000..046192b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj new file mode 100644 index 0000000..69d42a5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj new file mode 100644 index 0000000..d48e804 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj new file mode 100644 index 0000000..f583c40 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj new file mode 100644 index 0000000..9dd0f88 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj new file mode 100644 index 0000000..5f02e2b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/D_/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj new file mode 100644 index 0000000..6d89f2b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj new file mode 100644 index 0000000..eb207a4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj new file mode 100644 index 0000000..8dcbabe Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj new file mode 100644 index 0000000..5b60e18 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj new file mode 100644 index 0000000..f964957 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj new file mode 100644 index 0000000..7220156 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj new file mode 100644 index 0000000..932eebd Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj new file mode 100644 index 0000000..fc9e71f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj new file mode 100644 index 0000000..fa64c90 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj new file mode 100644 index 0000000..e5a749a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj new file mode 100644 index 0000000..2a7a02c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj new file mode 100644 index 0000000..f44c373 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj new file mode 100644 index 0000000..117d10c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj new file mode 100644 index 0000000..0d7f192 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj new file mode 100644 index 0000000..b4976ba Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj new file mode 100644 index 0000000..fdc70bc Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj new file mode 100644 index 0000000..5bfede3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj new file mode 100644 index 0000000..1853b57 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj new file mode 100644 index 0000000..0815332 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj new file mode 100644 index 0000000..7e9bb3b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj new file mode 100644 index 0000000..b5f84bc Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj new file mode 100644 index 0000000..10b44d7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj new file mode 100644 index 0000000..256bd14 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj new file mode 100644 index 0000000..8ddf7a6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj new file mode 100644 index 0000000..559d636 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj new file mode 100644 index 0000000..548b5d2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake new file mode 100644 index 0000000..46dbe7c --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake @@ -0,0 +1,51 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/library + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/library/error.c b/build/esp-idf/mbedtls/mbedtls/library/error.c new file mode 100644 index 0000000..297eccd --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/error.c @@ -0,0 +1,878 @@ +/* + * Error message information + * + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + */ + +#include "common.h" + +#include "mbedtls/error.h" + +#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY) + +#if defined(MBEDTLS_ERROR_C) + +#include "mbedtls/platform.h" + +#include +#include + +#if defined(MBEDTLS_AES_C) +#include "mbedtls/aes.h" +#endif + +#if defined(MBEDTLS_ARIA_C) +#include "mbedtls/aria.h" +#endif + +#if defined(MBEDTLS_ASN1_PARSE_C) +#include "mbedtls/asn1.h" +#endif + +#if defined(MBEDTLS_BASE64_C) +#include "mbedtls/base64.h" +#endif + +#if defined(MBEDTLS_BIGNUM_C) +#include "mbedtls/bignum.h" +#endif + +#if defined(MBEDTLS_CAMELLIA_C) +#include "mbedtls/camellia.h" +#endif + +#if defined(MBEDTLS_CCM_C) +#include "mbedtls/ccm.h" +#endif + +#if defined(MBEDTLS_CHACHA20_C) +#include "mbedtls/chacha20.h" +#endif + +#if defined(MBEDTLS_CHACHAPOLY_C) +#include "mbedtls/chachapoly.h" +#endif + +#if defined(MBEDTLS_CIPHER_C) +#include "mbedtls/cipher.h" +#endif + +#if defined(MBEDTLS_CTR_DRBG_C) +#include "mbedtls/ctr_drbg.h" +#endif + +#if defined(MBEDTLS_DES_C) +#include "mbedtls/des.h" +#endif + +#if defined(MBEDTLS_DHM_C) +#include "mbedtls/dhm.h" +#endif + +#if defined(MBEDTLS_ECP_C) +#include "mbedtls/ecp.h" +#endif + +#if defined(MBEDTLS_ENTROPY_C) +#include "mbedtls/entropy.h" +#endif + +#if defined(MBEDTLS_ERROR_C) +#include "mbedtls/error.h" +#endif + +#if defined(MBEDTLS_PLATFORM_C) +#include "mbedtls/platform.h" +#endif + +#if defined(MBEDTLS_GCM_C) +#include "mbedtls/gcm.h" +#endif + +#if defined(MBEDTLS_HKDF_C) +#include "mbedtls/hkdf.h" +#endif + +#if defined(MBEDTLS_HMAC_DRBG_C) +#include "mbedtls/hmac_drbg.h" +#endif + +#if defined(MBEDTLS_LMS_C) +#include "mbedtls/lms.h" +#endif + +#if defined(MBEDTLS_MD_C) +#include "mbedtls/md.h" +#endif + +#if defined(MBEDTLS_NET_C) +#include "mbedtls/net_sockets.h" +#endif + +#if defined(MBEDTLS_OID_C) +#include "mbedtls/oid.h" +#endif + +#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C) +#include "mbedtls/pem.h" +#endif + +#if defined(MBEDTLS_PK_C) +#include "mbedtls/pk.h" +#endif + +#if defined(MBEDTLS_PKCS12_C) +#include "mbedtls/pkcs12.h" +#endif + +#if defined(MBEDTLS_PKCS5_C) +#include "mbedtls/pkcs5.h" +#endif + +#if defined(MBEDTLS_PKCS7_C) +#include "mbedtls/pkcs7.h" +#endif + +#if defined(MBEDTLS_POLY1305_C) +#include "mbedtls/poly1305.h" +#endif + +#if defined(MBEDTLS_RSA_C) +#include "mbedtls/rsa.h" +#endif + +#if defined(MBEDTLS_SHA1_C) +#include "mbedtls/sha1.h" +#endif + +#if defined(MBEDTLS_SHA256_C) +#include "mbedtls/sha256.h" +#endif + +#if defined(MBEDTLS_SHA3_C) +#include "mbedtls/sha3.h" +#endif + +#if defined(MBEDTLS_SHA512_C) +#include "mbedtls/sha512.h" +#endif + +#if defined(MBEDTLS_SSL_TLS_C) +#include "mbedtls/ssl.h" +#endif + +#if defined(MBEDTLS_THREADING_C) +#include "mbedtls/threading.h" +#endif + +#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C) +#include "mbedtls/x509.h" +#endif + + +const char *mbedtls_high_level_strerr(int error_code) +{ + int high_level_error_code; + + if (error_code < 0) { + error_code = -error_code; + } + + /* Extract the high-level part from the error code. */ + high_level_error_code = error_code & 0xFF80; + + switch (high_level_error_code) { + /* Begin Auto-Generated Code. */ + #if defined(MBEDTLS_CIPHER_C) + case -(MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE): + return( "CIPHER - The selected feature is not available" ); + case -(MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA): + return( "CIPHER - Bad input parameters" ); + case -(MBEDTLS_ERR_CIPHER_ALLOC_FAILED): + return( "CIPHER - Failed to allocate memory" ); + case -(MBEDTLS_ERR_CIPHER_INVALID_PADDING): + return( "CIPHER - Input data contains invalid padding and is rejected" ); + case -(MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED): + return( "CIPHER - Decryption of block requires a full block" ); + case -(MBEDTLS_ERR_CIPHER_AUTH_FAILED): + return( "CIPHER - Authentication failed (for AEAD modes)" ); + case -(MBEDTLS_ERR_CIPHER_INVALID_CONTEXT): + return( "CIPHER - The context is invalid. For example, because it was freed" ); +#endif /* MBEDTLS_CIPHER_C */ + +#if defined(MBEDTLS_DHM_C) + case -(MBEDTLS_ERR_DHM_BAD_INPUT_DATA): + return( "DHM - Bad input parameters" ); + case -(MBEDTLS_ERR_DHM_READ_PARAMS_FAILED): + return( "DHM - Reading of the DHM parameters failed" ); + case -(MBEDTLS_ERR_DHM_MAKE_PARAMS_FAILED): + return( "DHM - Making of the DHM parameters failed" ); + case -(MBEDTLS_ERR_DHM_READ_PUBLIC_FAILED): + return( "DHM - Reading of the public values failed" ); + case -(MBEDTLS_ERR_DHM_MAKE_PUBLIC_FAILED): + return( "DHM - Making of the public value failed" ); + case -(MBEDTLS_ERR_DHM_CALC_SECRET_FAILED): + return( "DHM - Calculation of the DHM secret failed" ); + case -(MBEDTLS_ERR_DHM_INVALID_FORMAT): + return( "DHM - The ASN.1 data is not formatted correctly" ); + case -(MBEDTLS_ERR_DHM_ALLOC_FAILED): + return( "DHM - Allocation of memory failed" ); + case -(MBEDTLS_ERR_DHM_FILE_IO_ERROR): + return( "DHM - Read or write of file failed" ); + case -(MBEDTLS_ERR_DHM_SET_GROUP_FAILED): + return( "DHM - Setting the modulus and generator failed" ); +#endif /* MBEDTLS_DHM_C */ + +#if defined(MBEDTLS_ECP_C) + case -(MBEDTLS_ERR_ECP_BAD_INPUT_DATA): + return( "ECP - Bad input parameters to function" ); + case -(MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL): + return( "ECP - The buffer is too small to write to" ); + case -(MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE): + return( "ECP - The requested feature is not available, for example, the requested curve is not supported" ); + case -(MBEDTLS_ERR_ECP_VERIFY_FAILED): + return( "ECP - The signature is not valid" ); + case -(MBEDTLS_ERR_ECP_ALLOC_FAILED): + return( "ECP - Memory allocation failed" ); + case -(MBEDTLS_ERR_ECP_RANDOM_FAILED): + return( "ECP - Generation of random value, such as ephemeral key, failed" ); + case -(MBEDTLS_ERR_ECP_INVALID_KEY): + return( "ECP - Invalid private or public key" ); + case -(MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH): + return( "ECP - The buffer contains a valid signature followed by more data" ); + case -(MBEDTLS_ERR_ECP_IN_PROGRESS): + return( "ECP - Operation in progress, call again with the same parameters to continue" ); +#endif /* MBEDTLS_ECP_C */ + +#if defined(MBEDTLS_MD_C) + case -(MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE): + return( "MD - The selected feature is not available" ); + case -(MBEDTLS_ERR_MD_BAD_INPUT_DATA): + return( "MD - Bad input parameters to function" ); + case -(MBEDTLS_ERR_MD_ALLOC_FAILED): + return( "MD - Failed to allocate memory" ); + case -(MBEDTLS_ERR_MD_FILE_IO_ERROR): + return( "MD - Opening or reading of file failed" ); +#endif /* MBEDTLS_MD_C */ + +#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C) + case -(MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT): + return( "PEM - No PEM header or footer found" ); + case -(MBEDTLS_ERR_PEM_INVALID_DATA): + return( "PEM - PEM string is not as expected" ); + case -(MBEDTLS_ERR_PEM_ALLOC_FAILED): + return( "PEM - Failed to allocate memory" ); + case -(MBEDTLS_ERR_PEM_INVALID_ENC_IV): + return( "PEM - RSA IV is not in hex-format" ); + case -(MBEDTLS_ERR_PEM_UNKNOWN_ENC_ALG): + return( "PEM - Unsupported key encryption algorithm" ); + case -(MBEDTLS_ERR_PEM_PASSWORD_REQUIRED): + return( "PEM - Private key password can't be empty" ); + case -(MBEDTLS_ERR_PEM_PASSWORD_MISMATCH): + return( "PEM - Given private key password does not allow for correct decryption" ); + case -(MBEDTLS_ERR_PEM_FEATURE_UNAVAILABLE): + return( "PEM - Unavailable feature, e.g. hashing/encryption combination" ); + case -(MBEDTLS_ERR_PEM_BAD_INPUT_DATA): + return( "PEM - Bad input parameters to function" ); +#endif /* MBEDTLS_PEM_PARSE_C || MBEDTLS_PEM_WRITE_C */ + +#if defined(MBEDTLS_PK_C) + case -(MBEDTLS_ERR_PK_ALLOC_FAILED): + return( "PK - Memory allocation failed" ); + case -(MBEDTLS_ERR_PK_TYPE_MISMATCH): + return( "PK - Type mismatch, eg attempt to encrypt with an ECDSA key" ); + case -(MBEDTLS_ERR_PK_BAD_INPUT_DATA): + return( "PK - Bad input parameters to function" ); + case -(MBEDTLS_ERR_PK_FILE_IO_ERROR): + return( "PK - Read/write of file failed" ); + case -(MBEDTLS_ERR_PK_KEY_INVALID_VERSION): + return( "PK - Unsupported key version" ); + case -(MBEDTLS_ERR_PK_KEY_INVALID_FORMAT): + return( "PK - Invalid key tag or value" ); + case -(MBEDTLS_ERR_PK_UNKNOWN_PK_ALG): + return( "PK - Key algorithm is unsupported (only RSA and EC are supported)" ); + case -(MBEDTLS_ERR_PK_PASSWORD_REQUIRED): + return( "PK - Private key password can't be empty" ); + case -(MBEDTLS_ERR_PK_PASSWORD_MISMATCH): + return( "PK - Given private key password does not allow for correct decryption" ); + case -(MBEDTLS_ERR_PK_INVALID_PUBKEY): + return( "PK - The pubkey tag or value is invalid (only RSA and EC are supported)" ); + case -(MBEDTLS_ERR_PK_INVALID_ALG): + return( "PK - The algorithm tag or value is invalid" ); + case -(MBEDTLS_ERR_PK_UNKNOWN_NAMED_CURVE): + return( "PK - Elliptic curve is unsupported (only NIST curves are supported)" ); + case -(MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE): + return( "PK - Unavailable feature, e.g. RSA disabled for RSA key" ); + case -(MBEDTLS_ERR_PK_SIG_LEN_MISMATCH): + return( "PK - The buffer contains a valid signature followed by more data" ); + case -(MBEDTLS_ERR_PK_BUFFER_TOO_SMALL): + return( "PK - The output buffer is too small" ); +#endif /* MBEDTLS_PK_C */ + +#if defined(MBEDTLS_PKCS12_C) + case -(MBEDTLS_ERR_PKCS12_BAD_INPUT_DATA): + return( "PKCS12 - Bad input parameters to function" ); + case -(MBEDTLS_ERR_PKCS12_FEATURE_UNAVAILABLE): + return( "PKCS12 - Feature not available, e.g. unsupported encryption scheme" ); + case -(MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT): + return( "PKCS12 - PBE ASN.1 data not as expected" ); + case -(MBEDTLS_ERR_PKCS12_PASSWORD_MISMATCH): + return( "PKCS12 - Given private key password does not allow for correct decryption" ); +#endif /* MBEDTLS_PKCS12_C */ + +#if defined(MBEDTLS_PKCS5_C) + case -(MBEDTLS_ERR_PKCS5_BAD_INPUT_DATA): + return( "PKCS5 - Bad input parameters to function" ); + case -(MBEDTLS_ERR_PKCS5_INVALID_FORMAT): + return( "PKCS5 - Unexpected ASN.1 data" ); + case -(MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE): + return( "PKCS5 - Requested encryption or digest alg not available" ); + case -(MBEDTLS_ERR_PKCS5_PASSWORD_MISMATCH): + return( "PKCS5 - Given private key password does not allow for correct decryption" ); +#endif /* MBEDTLS_PKCS5_C */ + +#if defined(MBEDTLS_PKCS7_C) + case -(MBEDTLS_ERR_PKCS7_INVALID_FORMAT): + return( "PKCS7 - The format is invalid, e.g. different type expected" ); + case -(MBEDTLS_ERR_PKCS7_FEATURE_UNAVAILABLE): + return( "PKCS7 - Unavailable feature, e.g. anything other than signed data" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_VERSION): + return( "PKCS7 - The PKCS #7 version element is invalid or cannot be parsed" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO): + return( "PKCS7 - The PKCS #7 content info is invalid or cannot be parsed" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_ALG): + return( "PKCS7 - The algorithm tag or value is invalid or cannot be parsed" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_CERT): + return( "PKCS7 - The certificate tag or value is invalid or cannot be parsed" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE): + return( "PKCS7 - Error parsing the signature" ); + case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNER_INFO): + return( "PKCS7 - Error parsing the signer's info" ); + case -(MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA): + return( "PKCS7 - Input invalid" ); + case -(MBEDTLS_ERR_PKCS7_ALLOC_FAILED): + return( "PKCS7 - Allocation of memory failed" ); + case -(MBEDTLS_ERR_PKCS7_VERIFY_FAIL): + return( "PKCS7 - Verification Failed" ); + case -(MBEDTLS_ERR_PKCS7_CERT_DATE_INVALID): + return( "PKCS7 - The PKCS #7 date issued/expired dates are invalid" ); +#endif /* MBEDTLS_PKCS7_C */ + +#if defined(MBEDTLS_RSA_C) + case -(MBEDTLS_ERR_RSA_BAD_INPUT_DATA): + return( "RSA - Bad input parameters to function" ); + case -(MBEDTLS_ERR_RSA_INVALID_PADDING): + return( "RSA - Input data contains invalid padding and is rejected" ); + case -(MBEDTLS_ERR_RSA_KEY_GEN_FAILED): + return( "RSA - Something failed during generation of a key" ); + case -(MBEDTLS_ERR_RSA_KEY_CHECK_FAILED): + return( "RSA - Key failed to pass the validity check of the library" ); + case -(MBEDTLS_ERR_RSA_PUBLIC_FAILED): + return( "RSA - The public key operation failed" ); + case -(MBEDTLS_ERR_RSA_PRIVATE_FAILED): + return( "RSA - The private key operation failed" ); + case -(MBEDTLS_ERR_RSA_VERIFY_FAILED): + return( "RSA - The PKCS#1 verification failed" ); + case -(MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE): + return( "RSA - The output buffer for decryption is not large enough" ); + case -(MBEDTLS_ERR_RSA_RNG_FAILED): + return( "RSA - The random generator failed to generate non-zeros" ); +#endif /* MBEDTLS_RSA_C */ + +#if defined(MBEDTLS_SSL_TLS_C) + case -(MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS): + return( "SSL - A cryptographic operation is in progress. Try again later" ); + case -(MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE): + return( "SSL - The requested feature is not available" ); + case -(MBEDTLS_ERR_SSL_BAD_INPUT_DATA): + return( "SSL - Bad input parameters to function" ); + case -(MBEDTLS_ERR_SSL_INVALID_MAC): + return( "SSL - Verification of the message MAC failed" ); + case -(MBEDTLS_ERR_SSL_INVALID_RECORD): + return( "SSL - An invalid SSL record was received" ); + case -(MBEDTLS_ERR_SSL_CONN_EOF): + return( "SSL - The connection indicated an EOF" ); + case -(MBEDTLS_ERR_SSL_DECODE_ERROR): + return( "SSL - A message could not be parsed due to a syntactic error" ); + case -(MBEDTLS_ERR_SSL_NO_RNG): + return( "SSL - No RNG was provided to the SSL module" ); + case -(MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE): + return( "SSL - No client certification received from the client, but required by the authentication mode" ); + case -(MBEDTLS_ERR_SSL_UNSUPPORTED_EXTENSION): + return( "SSL - Client received an extended server hello containing an unsupported extension" ); + case -(MBEDTLS_ERR_SSL_NO_APPLICATION_PROTOCOL): + return( "SSL - No ALPN protocols supported that the client advertises" ); + case -(MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED): + return( "SSL - The own private key or pre-shared key is not set, but needed" ); + case -(MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED): + return( "SSL - No CA Chain is set, but required to operate" ); + case -(MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE): + return( "SSL - An unexpected message was received from our peer" ); + case -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE): + return( "SSL - A fatal alert message was received from our peer" ); + case -(MBEDTLS_ERR_SSL_UNRECOGNIZED_NAME): + return( "SSL - No server could be identified matching the client's SNI" ); + case -(MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY): + return( "SSL - The peer notified us that the connection is going to be closed" ); + case -(MBEDTLS_ERR_SSL_BAD_CERTIFICATE): + return( "SSL - Processing of the Certificate handshake message failed" ); + case -(MBEDTLS_ERR_SSL_RECEIVED_NEW_SESSION_TICKET): + return( "SSL - A TLS 1.3 NewSessionTicket message has been received" ); + case -(MBEDTLS_ERR_SSL_CANNOT_READ_EARLY_DATA): + return( "SSL - Not possible to read early data" ); + case -(MBEDTLS_ERR_SSL_RECEIVED_EARLY_DATA): + return( "SSL - * Early data has been received as part of an on-going handshake. This error code can be returned only on server side if and only if early data has been enabled by means of the mbedtls_ssl_conf_early_data() API. This error code can then be returned by mbedtls_ssl_handshake(), mbedtls_ssl_handshake_step(), mbedtls_ssl_read() or mbedtls_ssl_write() if early data has been received as part of the handshake sequence they triggered. To read the early data, call mbedtls_ssl_read_early_data()" ); + case -(MBEDTLS_ERR_SSL_CANNOT_WRITE_EARLY_DATA): + return( "SSL - Not possible to write early data" ); + case -(MBEDTLS_ERR_SSL_CACHE_ENTRY_NOT_FOUND): + return( "SSL - Cache entry not found" ); + case -(MBEDTLS_ERR_SSL_ALLOC_FAILED): + return( "SSL - Memory allocation failed" ); + case -(MBEDTLS_ERR_SSL_HW_ACCEL_FAILED): + return( "SSL - Hardware acceleration function returned with error" ); + case -(MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH): + return( "SSL - Hardware acceleration function skipped / left alone data" ); + case -(MBEDTLS_ERR_SSL_BAD_PROTOCOL_VERSION): + return( "SSL - Handshake protocol not within min/max boundaries" ); + case -(MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE): + return( "SSL - The handshake negotiation failed" ); + case -(MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED): + return( "SSL - Session ticket has expired" ); + case -(MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH): + return( "SSL - Public key type mismatch (eg, asked for RSA key exchange and presented EC key)" ); + case -(MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY): + return( "SSL - Unknown identity received (eg, PSK identity)" ); + case -(MBEDTLS_ERR_SSL_INTERNAL_ERROR): + return( "SSL - Internal error (eg, unexpected failure in lower-level module)" ); + case -(MBEDTLS_ERR_SSL_COUNTER_WRAPPING): + return( "SSL - A counter would wrap (eg, too many messages exchanged)" ); + case -(MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO): + return( "SSL - Unexpected message at ServerHello in renegotiation" ); + case -(MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED): + return( "SSL - DTLS client must retry for hello verification" ); + case -(MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL): + return( "SSL - A buffer is too small to receive or write a message" ); + case -(MBEDTLS_ERR_SSL_WANT_READ): + return( "SSL - No data of requested type currently available on underlying transport" ); + case -(MBEDTLS_ERR_SSL_WANT_WRITE): + return( "SSL - Connection requires a write call" ); + case -(MBEDTLS_ERR_SSL_TIMEOUT): + return( "SSL - The operation timed out" ); + case -(MBEDTLS_ERR_SSL_CLIENT_RECONNECT): + return( "SSL - The client initiated a reconnect from the same port" ); + case -(MBEDTLS_ERR_SSL_UNEXPECTED_RECORD): + return( "SSL - Record header looks valid but is not expected" ); + case -(MBEDTLS_ERR_SSL_NON_FATAL): + return( "SSL - The alert message received indicates a non-fatal error" ); + case -(MBEDTLS_ERR_SSL_ILLEGAL_PARAMETER): + return( "SSL - A field in a message was incorrect or inconsistent with other fields" ); + case -(MBEDTLS_ERR_SSL_CONTINUE_PROCESSING): + return( "SSL - Internal-only message signaling that further message-processing should be done" ); + case -(MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS): + return( "SSL - The asynchronous operation is not completed yet" ); + case -(MBEDTLS_ERR_SSL_EARLY_MESSAGE): + return( "SSL - Internal-only message signaling that a message arrived early" ); + case -(MBEDTLS_ERR_SSL_UNEXPECTED_CID): + return( "SSL - An encrypted DTLS-frame with an unexpected CID was received" ); + case -(MBEDTLS_ERR_SSL_VERSION_MISMATCH): + return( "SSL - An operation failed due to an unexpected version or configuration" ); + case -(MBEDTLS_ERR_SSL_BAD_CONFIG): + return( "SSL - Invalid value in SSL config" ); + case -(MBEDTLS_ERR_SSL_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME): + return( "SSL - Attempt to verify a certificate without an expected hostname. This is usually insecure. In TLS clients, when a client authenticates a server through its certificate, the client normally checks three things: - the certificate chain must be valid; - the chain must start from a trusted CA; - the certificate must cover the server name that is expected by the client. Omitting any of these checks is generally insecure, and can allow a malicious server to impersonate a legitimate server. The third check may be safely skipped in some unusual scenarios, such as networks where eavesdropping is a risk but not active attacks, or a private PKI where the client equally trusts all servers that are accredited by the root CA. You should call mbedtls_ssl_set_hostname() with the expected server name before starting a TLS handshake on a client (unless the client is set up to only use PSK-based authentication, which does not rely on the host name). If you have determined that server name verification is not required for security in your scenario, call mbedtls_ssl_set_hostname() with \\p NULL as the server name. This error is raised if all of the following conditions are met: - A TLS client is configured with the authentication mode #MBEDTLS_SSL_VERIFY_REQUIRED (default). - Certificate authentication is enabled. - The client does not call mbedtls_ssl_set_hostname(). - The configuration option #MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME is not enabled" ); +#endif /* MBEDTLS_SSL_TLS_C */ + +#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C) + case -(MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE): + return( "X509 - Unavailable feature, e.g. RSA hashing/encryption combination" ); + case -(MBEDTLS_ERR_X509_UNKNOWN_OID): + return( "X509 - Requested OID is unknown" ); + case -(MBEDTLS_ERR_X509_INVALID_FORMAT): + return( "X509 - The CRT/CRL/CSR format is invalid, e.g. different type expected" ); + case -(MBEDTLS_ERR_X509_INVALID_VERSION): + return( "X509 - The CRT/CRL/CSR version element is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_SERIAL): + return( "X509 - The serial tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_ALG): + return( "X509 - The algorithm tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_NAME): + return( "X509 - The name tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_DATE): + return( "X509 - The date tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_SIGNATURE): + return( "X509 - The signature tag or value invalid" ); + case -(MBEDTLS_ERR_X509_INVALID_EXTENSIONS): + return( "X509 - The extension tag or value is invalid" ); + case -(MBEDTLS_ERR_X509_UNKNOWN_VERSION): + return( "X509 - CRT/CRL/CSR has an unsupported version number" ); + case -(MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG): + return( "X509 - Signature algorithm (oid) is unsupported" ); + case -(MBEDTLS_ERR_X509_SIG_MISMATCH): + return( "X509 - Signature algorithms do not match. (see \\c ::mbedtls_x509_crt sig_oid)" ); + case -(MBEDTLS_ERR_X509_CERT_VERIFY_FAILED): + return( "X509 - Certificate verification failed, e.g. CRL, CA or signature check failed" ); + case -(MBEDTLS_ERR_X509_CERT_UNKNOWN_FORMAT): + return( "X509 - Format not recognized as DER or PEM" ); + case -(MBEDTLS_ERR_X509_BAD_INPUT_DATA): + return( "X509 - Input invalid" ); + case -(MBEDTLS_ERR_X509_ALLOC_FAILED): + return( "X509 - Allocation of memory failed" ); + case -(MBEDTLS_ERR_X509_FILE_IO_ERROR): + return( "X509 - Read/write of file failed" ); + case -(MBEDTLS_ERR_X509_BUFFER_TOO_SMALL): + return( "X509 - Destination buffer is too small" ); + case -(MBEDTLS_ERR_X509_FATAL_ERROR): + return( "X509 - A fatal error occurred, eg the chain is too long or the vrfy callback failed" ); +#endif /* MBEDTLS_X509_USE_C || MBEDTLS_X509_CREATE_C */ + /* End Auto-Generated Code. */ + + default: + break; + } + + return NULL; +} + +const char *mbedtls_low_level_strerr(int error_code) +{ + int low_level_error_code; + + if (error_code < 0) { + error_code = -error_code; + } + + /* Extract the low-level part from the error code. */ + low_level_error_code = error_code & ~0xFF80; + + switch (low_level_error_code) { + /* Begin Auto-Generated Code. */ + #if defined(MBEDTLS_AES_C) + case -(MBEDTLS_ERR_AES_INVALID_KEY_LENGTH): + return( "AES - Invalid key length" ); + case -(MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH): + return( "AES - Invalid data input length" ); + case -(MBEDTLS_ERR_AES_BAD_INPUT_DATA): + return( "AES - Invalid input data" ); +#endif /* MBEDTLS_AES_C */ + +#if defined(MBEDTLS_ARIA_C) + case -(MBEDTLS_ERR_ARIA_BAD_INPUT_DATA): + return( "ARIA - Bad input data" ); + case -(MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH): + return( "ARIA - Invalid data input length" ); +#endif /* MBEDTLS_ARIA_C */ + +#if defined(MBEDTLS_ASN1_PARSE_C) + case -(MBEDTLS_ERR_ASN1_OUT_OF_DATA): + return( "ASN1 - Out of data when parsing an ASN1 data structure" ); + case -(MBEDTLS_ERR_ASN1_UNEXPECTED_TAG): + return( "ASN1 - ASN1 tag was of an unexpected value" ); + case -(MBEDTLS_ERR_ASN1_INVALID_LENGTH): + return( "ASN1 - Error when trying to determine the length or invalid length" ); + case -(MBEDTLS_ERR_ASN1_LENGTH_MISMATCH): + return( "ASN1 - Actual length differs from expected length" ); + case -(MBEDTLS_ERR_ASN1_INVALID_DATA): + return( "ASN1 - Data is invalid" ); + case -(MBEDTLS_ERR_ASN1_ALLOC_FAILED): + return( "ASN1 - Memory allocation failed" ); + case -(MBEDTLS_ERR_ASN1_BUF_TOO_SMALL): + return( "ASN1 - Buffer too small when writing ASN.1 data structure" ); +#endif /* MBEDTLS_ASN1_PARSE_C */ + +#if defined(MBEDTLS_BASE64_C) + case -(MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL): + return( "BASE64 - Output buffer too small" ); + case -(MBEDTLS_ERR_BASE64_INVALID_CHARACTER): + return( "BASE64 - Invalid character in input" ); +#endif /* MBEDTLS_BASE64_C */ + +#if defined(MBEDTLS_BIGNUM_C) + case -(MBEDTLS_ERR_MPI_FILE_IO_ERROR): + return( "BIGNUM - An error occurred while reading from or writing to a file" ); + case -(MBEDTLS_ERR_MPI_BAD_INPUT_DATA): + return( "BIGNUM - Bad input parameters to function" ); + case -(MBEDTLS_ERR_MPI_INVALID_CHARACTER): + return( "BIGNUM - There is an invalid character in the digit string" ); + case -(MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL): + return( "BIGNUM - The buffer is too small to write to" ); + case -(MBEDTLS_ERR_MPI_NEGATIVE_VALUE): + return( "BIGNUM - The input arguments are negative or result in illegal output" ); + case -(MBEDTLS_ERR_MPI_DIVISION_BY_ZERO): + return( "BIGNUM - The input argument for division is zero, which is not allowed" ); + case -(MBEDTLS_ERR_MPI_NOT_ACCEPTABLE): + return( "BIGNUM - The input arguments are not acceptable" ); + case -(MBEDTLS_ERR_MPI_ALLOC_FAILED): + return( "BIGNUM - Memory allocation failed" ); +#endif /* MBEDTLS_BIGNUM_C */ + +#if defined(MBEDTLS_CAMELLIA_C) + case -(MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA): + return( "CAMELLIA - Bad input data" ); + case -(MBEDTLS_ERR_CAMELLIA_INVALID_INPUT_LENGTH): + return( "CAMELLIA - Invalid data input length" ); +#endif /* MBEDTLS_CAMELLIA_C */ + +#if defined(MBEDTLS_CCM_C) + case -(MBEDTLS_ERR_CCM_BAD_INPUT): + return( "CCM - Bad input parameters to the function" ); + case -(MBEDTLS_ERR_CCM_AUTH_FAILED): + return( "CCM - Authenticated decryption failed" ); +#endif /* MBEDTLS_CCM_C */ + +#if defined(MBEDTLS_CHACHA20_C) + case -(MBEDTLS_ERR_CHACHA20_BAD_INPUT_DATA): + return( "CHACHA20 - Invalid input parameter(s)" ); +#endif /* MBEDTLS_CHACHA20_C */ + +#if defined(MBEDTLS_CHACHAPOLY_C) + case -(MBEDTLS_ERR_CHACHAPOLY_BAD_STATE): + return( "CHACHAPOLY - The requested operation is not permitted in the current state" ); + case -(MBEDTLS_ERR_CHACHAPOLY_AUTH_FAILED): + return( "CHACHAPOLY - Authenticated decryption failed: data was not authentic" ); +#endif /* MBEDTLS_CHACHAPOLY_C */ + +#if defined(MBEDTLS_CTR_DRBG_C) + case -(MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED): + return( "CTR_DRBG - The entropy source failed" ); + case -(MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG): + return( "CTR_DRBG - The requested random buffer length is too big" ); + case -(MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG): + return( "CTR_DRBG - The input (entropy + additional data) is too large" ); + case -(MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR): + return( "CTR_DRBG - Read or write error in file" ); +#endif /* MBEDTLS_CTR_DRBG_C */ + +#if defined(MBEDTLS_DES_C) + case -(MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH): + return( "DES - The data input has an invalid length" ); +#endif /* MBEDTLS_DES_C */ + +#if defined(MBEDTLS_ENTROPY_C) + case -(MBEDTLS_ERR_ENTROPY_SOURCE_FAILED): + return( "ENTROPY - Critical entropy source failure" ); + case -(MBEDTLS_ERR_ENTROPY_MAX_SOURCES): + return( "ENTROPY - No more sources can be added" ); + case -(MBEDTLS_ERR_ENTROPY_NO_SOURCES_DEFINED): + return( "ENTROPY - No sources have been added to poll" ); + case -(MBEDTLS_ERR_ENTROPY_NO_STRONG_SOURCE): + return( "ENTROPY - No strong sources have been added to poll" ); + case -(MBEDTLS_ERR_ENTROPY_FILE_IO_ERROR): + return( "ENTROPY - Read/write error in file" ); +#endif /* MBEDTLS_ENTROPY_C */ + +#if defined(MBEDTLS_ERROR_C) + case -(MBEDTLS_ERR_ERROR_GENERIC_ERROR): + return( "ERROR - Generic error" ); + case -(MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED): + return( "ERROR - This is a bug in the library" ); +#endif /* MBEDTLS_ERROR_C */ + +#if defined(MBEDTLS_PLATFORM_C) + case -(MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED): + return( "PLATFORM - Hardware accelerator failed" ); + case -(MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED): + return( "PLATFORM - The requested feature is not supported by the platform" ); +#endif /* MBEDTLS_PLATFORM_C */ + +#if defined(MBEDTLS_GCM_C) + case -(MBEDTLS_ERR_GCM_AUTH_FAILED): + return( "GCM - Authenticated decryption failed" ); + case -(MBEDTLS_ERR_GCM_BAD_INPUT): + return( "GCM - Bad input parameters to function" ); + case -(MBEDTLS_ERR_GCM_BUFFER_TOO_SMALL): + return( "GCM - An output buffer is too small" ); +#endif /* MBEDTLS_GCM_C */ + +#if defined(MBEDTLS_HKDF_C) + case -(MBEDTLS_ERR_HKDF_BAD_INPUT_DATA): + return( "HKDF - Bad input parameters to function" ); +#endif /* MBEDTLS_HKDF_C */ + +#if defined(MBEDTLS_HMAC_DRBG_C) + case -(MBEDTLS_ERR_HMAC_DRBG_REQUEST_TOO_BIG): + return( "HMAC_DRBG - Too many random requested in single call" ); + case -(MBEDTLS_ERR_HMAC_DRBG_INPUT_TOO_BIG): + return( "HMAC_DRBG - Input too large (Entropy + additional)" ); + case -(MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR): + return( "HMAC_DRBG - Read/write error in file" ); + case -(MBEDTLS_ERR_HMAC_DRBG_ENTROPY_SOURCE_FAILED): + return( "HMAC_DRBG - The entropy source failed" ); +#endif /* MBEDTLS_HMAC_DRBG_C */ + +#if defined(MBEDTLS_LMS_C) + case -(MBEDTLS_ERR_LMS_BAD_INPUT_DATA): + return( "LMS - Bad data has been input to an LMS function" ); + case -(MBEDTLS_ERR_LMS_OUT_OF_PRIVATE_KEYS): + return( "LMS - Specified LMS key has utilised all of its private keys" ); + case -(MBEDTLS_ERR_LMS_VERIFY_FAILED): + return( "LMS - LMS signature verification failed" ); + case -(MBEDTLS_ERR_LMS_ALLOC_FAILED): + return( "LMS - LMS failed to allocate space for a private key" ); + case -(MBEDTLS_ERR_LMS_BUFFER_TOO_SMALL): + return( "LMS - Input/output buffer is too small to contain requited data" ); +#endif /* MBEDTLS_LMS_C */ + +#if defined(MBEDTLS_NET_C) + case -(MBEDTLS_ERR_NET_SOCKET_FAILED): + return( "NET - Failed to open a socket" ); + case -(MBEDTLS_ERR_NET_CONNECT_FAILED): + return( "NET - The connection to the given server / port failed" ); + case -(MBEDTLS_ERR_NET_BIND_FAILED): + return( "NET - Binding of the socket failed" ); + case -(MBEDTLS_ERR_NET_LISTEN_FAILED): + return( "NET - Could not listen on the socket" ); + case -(MBEDTLS_ERR_NET_ACCEPT_FAILED): + return( "NET - Could not accept the incoming connection" ); + case -(MBEDTLS_ERR_NET_RECV_FAILED): + return( "NET - Reading information from the socket failed" ); + case -(MBEDTLS_ERR_NET_SEND_FAILED): + return( "NET - Sending information through the socket failed" ); + case -(MBEDTLS_ERR_NET_CONN_RESET): + return( "NET - Connection was reset by peer" ); + case -(MBEDTLS_ERR_NET_UNKNOWN_HOST): + return( "NET - Failed to get an IP address for the given hostname" ); + case -(MBEDTLS_ERR_NET_BUFFER_TOO_SMALL): + return( "NET - Buffer is too small to hold the data" ); + case -(MBEDTLS_ERR_NET_INVALID_CONTEXT): + return( "NET - The context is invalid, eg because it was free()ed" ); + case -(MBEDTLS_ERR_NET_POLL_FAILED): + return( "NET - Polling the net context failed" ); + case -(MBEDTLS_ERR_NET_BAD_INPUT_DATA): + return( "NET - Input invalid" ); +#endif /* MBEDTLS_NET_C */ + +#if defined(MBEDTLS_OID_C) + case -(MBEDTLS_ERR_OID_NOT_FOUND): + return( "OID - OID is not found" ); + case -(MBEDTLS_ERR_OID_BUF_TOO_SMALL): + return( "OID - output buffer is too small" ); +#endif /* MBEDTLS_OID_C */ + +#if defined(MBEDTLS_POLY1305_C) + case -(MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA): + return( "POLY1305 - Invalid input parameter(s)" ); +#endif /* MBEDTLS_POLY1305_C */ + +#if defined(MBEDTLS_SHA1_C) + case -(MBEDTLS_ERR_SHA1_BAD_INPUT_DATA): + return( "SHA1 - SHA-1 input data was malformed" ); +#endif /* MBEDTLS_SHA1_C */ + +#if defined(MBEDTLS_SHA256_C) + case -(MBEDTLS_ERR_SHA256_BAD_INPUT_DATA): + return( "SHA256 - SHA-256 input data was malformed" ); +#endif /* MBEDTLS_SHA256_C */ + +#if defined(MBEDTLS_SHA3_C) + case -(MBEDTLS_ERR_SHA3_BAD_INPUT_DATA): + return( "SHA3 - SHA-3 input data was malformed" ); +#endif /* MBEDTLS_SHA3_C */ + +#if defined(MBEDTLS_SHA512_C) + case -(MBEDTLS_ERR_SHA512_BAD_INPUT_DATA): + return( "SHA512 - SHA-512 input data was malformed" ); +#endif /* MBEDTLS_SHA512_C */ + +#if defined(MBEDTLS_THREADING_C) + case -(MBEDTLS_ERR_THREADING_BAD_INPUT_DATA): + return( "THREADING - Bad input parameters to function" ); + case -(MBEDTLS_ERR_THREADING_MUTEX_ERROR): + return( "THREADING - Locking / unlocking / free failed with error code" ); +#endif /* MBEDTLS_THREADING_C */ + /* End Auto-Generated Code. */ + + default: + break; + } + + return NULL; +} + +void mbedtls_strerror(int ret, char *buf, size_t buflen) +{ + size_t len; + int use_ret; + const char *high_level_error_description = NULL; + const char *low_level_error_description = NULL; + + if (buflen == 0) { + return; + } + + memset(buf, 0x00, buflen); + + if (ret < 0) { + ret = -ret; + } + + if (ret & 0xFF80) { + use_ret = ret & 0xFF80; + + // Translate high level error code. + high_level_error_description = mbedtls_high_level_strerr(ret); + + if (high_level_error_description == NULL) { + mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret); + } else { + mbedtls_snprintf(buf, buflen, "%s", high_level_error_description); + } + +#if defined(MBEDTLS_SSL_TLS_C) + // Early return in case of a fatal error - do not try to translate low + // level code. + if (use_ret == -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE)) { + return; + } +#endif /* MBEDTLS_SSL_TLS_C */ + } + + use_ret = ret & ~0xFF80; + + if (use_ret == 0) { + return; + } + + // If high level code is present, make a concatenation between both + // error strings. + // + len = strlen(buf); + + if (len > 0) { + if (buflen - len < 5) { + return; + } + + mbedtls_snprintf(buf + len, buflen - len, " : "); + + buf += len + 3; + buflen -= len + 3; + } + + // Translate low level error code. + low_level_error_description = mbedtls_low_level_strerr(ret); + + if (low_level_error_description == NULL) { + mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret); + } else { + mbedtls_snprintf(buf, buflen, "%s", low_level_error_description); + } +} + +#else /* MBEDTLS_ERROR_C */ + +/* + * Provide a dummy implementation when MBEDTLS_ERROR_C is not defined + */ +void mbedtls_strerror(int ret, char *buf, size_t buflen) +{ + ((void) ret); + + if (buflen > 0) { + buf[0] = '\0'; + } +} + +#endif /* MBEDTLS_ERROR_C */ + +#endif /* MBEDTLS_ERROR_C || MBEDTLS_ERROR_STRERROR_DUMMY */ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a new file mode 100644 index 0000000..1b412d5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a new file mode 100644 index 0000000..8ab080c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a new file mode 100644 index 0000000..9d3f0bf Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c b/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c new file mode 100644 index 0000000..de8a526 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c @@ -0,0 +1,256 @@ +/* + * Functions to delegate cryptographic operations to an available + * and appropriate accelerator. + * Warning: This file is now auto-generated. + */ +/* Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + */ + + +/* BEGIN-common headers */ +#include "common.h" +#include "psa_crypto_aead.h" +#include "psa_crypto_cipher.h" +#include "psa_crypto_core.h" +#include "psa_crypto_driver_wrappers_no_static.h" +#include "psa_crypto_hash.h" +#include "psa_crypto_mac.h" +#include "psa_crypto_pake.h" +#include "psa_crypto_rsa.h" + +#include "mbedtls/platform.h" +/* END-common headers */ + +#if defined(MBEDTLS_PSA_CRYPTO_C) + +/* BEGIN-driver headers */ +/* Headers for mbedtls_test opaque driver */ +#if defined(PSA_CRYPTO_DRIVER_TEST) +#include "test/drivers/test_driver.h" + +#endif +/* Headers for mbedtls_test transparent driver */ +#if defined(PSA_CRYPTO_DRIVER_TEST) +#include "test/drivers/test_driver.h" + +#endif +/* Headers for p256 transparent driver */ +#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) +#include "../3rdparty/p256-m/p256-m_driver_entrypoints.h" + +#endif + +/* END-driver headers */ + +/* Auto-generated values depending on which drivers are registered. + * ID 0 is reserved for unallocated operations. + * ID 1 is reserved for the Mbed TLS software driver. */ +/* BEGIN-driver id definition */ +#define PSA_CRYPTO_MBED_TLS_DRIVER_ID (1) +#define MBEDTLS_TEST_OPAQUE_DRIVER_ID (2) +#define MBEDTLS_TEST_TRANSPARENT_DRIVER_ID (3) +#define P256_TRANSPARENT_DRIVER_ID (4) + +/* END-driver id */ + +/* BEGIN-Common Macro definitions */ + +/* END-Common Macro definitions */ + +/* Support the 'old' SE interface when asked to */ +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) +/* PSA_CRYPTO_DRIVER_PRESENT is defined when either a new-style or old-style + * SE driver is present, to avoid unused argument errors at compile time. */ +#ifndef PSA_CRYPTO_DRIVER_PRESENT +#define PSA_CRYPTO_DRIVER_PRESENT +#endif +#include "psa_crypto_se.h" +#endif + +/** Get the key buffer size required to store the key material of a key + * associated with an opaque driver. + * + * \param[in] attributes The key attributes. + * \param[out] key_buffer_size Minimum buffer size to contain the key material + * + * \retval #PSA_SUCCESS + * The minimum size for a buffer to contain the key material has been + * returned successfully. + * \retval #PSA_ERROR_NOT_SUPPORTED + * The type and/or the size in bits of the key or the combination of + * the two is not supported. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The key is declared with a lifetime not known to us. + */ +psa_status_t psa_driver_wrapper_get_key_buffer_size( + const psa_key_attributes_t *attributes, + size_t *key_buffer_size ) +{ + psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime(attributes) ); + psa_key_type_t key_type = psa_get_key_type(attributes); + size_t key_bits = psa_get_key_bits(attributes); + + *key_buffer_size = 0; + switch( location ) + { +#if defined(PSA_CRYPTO_DRIVER_TEST) + case PSA_CRYPTO_TEST_DRIVER_LOCATION: +#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) + /* Emulate property 'builtin_key_size' */ + if( psa_key_id_is_builtin( + MBEDTLS_SVC_KEY_ID_GET_KEY_ID( + psa_get_key_id( attributes ) ) ) ) + { + *key_buffer_size = sizeof( psa_drv_slot_number_t ); + return( PSA_SUCCESS ); + } +#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */ + *key_buffer_size = mbedtls_test_opaque_size_function( key_type, + key_bits ); + return( ( *key_buffer_size != 0 ) ? + PSA_SUCCESS : PSA_ERROR_NOT_SUPPORTED ); +#endif /* PSA_CRYPTO_DRIVER_TEST */ + + default: + (void)key_type; + (void)key_bits; + return( PSA_ERROR_INVALID_ARGUMENT ); + } +} + +psa_status_t psa_driver_wrapper_export_public_key( + const psa_key_attributes_t *attributes, + const uint8_t *key_buffer, size_t key_buffer_size, + uint8_t *data, size_t data_size, size_t *data_length ) + +{ + + psa_status_t status = PSA_ERROR_INVALID_ARGUMENT; + psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( + psa_get_key_lifetime( attributes ) ); + + /* Try dynamically-registered SE interface first */ +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) + const psa_drv_se_t *drv; + psa_drv_se_context_t *drv_context; + + if( psa_get_se_driver( psa_get_key_lifetime(attributes), &drv, &drv_context ) ) + { + if( ( drv->key_management == NULL ) || + ( drv->key_management->p_export_public == NULL ) ) + { + return( PSA_ERROR_NOT_SUPPORTED ); + } + + return( drv->key_management->p_export_public( + drv_context, + *( (psa_key_slot_number_t *)key_buffer ), + data, data_size, data_length ) ); + } +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ + + switch( location ) + { + case PSA_KEY_LOCATION_LOCAL_STORAGE: + /* Key is stored in the slot in export representation, so + * cycle through all known transparent accelerators */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) + +#if (defined(PSA_CRYPTO_DRIVER_TEST) ) + status = mbedtls_test_transparent_export_public_key + (attributes, + key_buffer, + key_buffer_size, + data, + data_size, + data_length + ); + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif + +#if (defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) ) + status = p256_transparent_export_public_key + (attributes, + key_buffer, + key_buffer_size, + data, + data_size, + data_length + ); + + if( status != PSA_ERROR_NOT_SUPPORTED ) + return( status ); +#endif + + +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + /* Fell through, meaning no accelerator supports this operation */ + return( psa_export_public_key_internal( attributes, + key_buffer, + key_buffer_size, + data, + data_size, + data_length ) ); + + /* Add cases for opaque driver here */ +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) + +#if (defined(PSA_CRYPTO_DRIVER_TEST) ) + case 0x7fffff: + return( mbedtls_test_opaque_export_public_key + (attributes, + key_buffer, + key_buffer_size, + data, + data_size, + data_length + )); +#endif + + +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + /* Key is declared with a lifetime not known to us */ + return( status ); + } + +} + +psa_status_t psa_driver_wrapper_get_builtin_key( + psa_drv_slot_number_t slot_number, + psa_key_attributes_t *attributes, + uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length ) +{ + + psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime(attributes) ); + switch( location ) + { +#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) + +#if (defined(PSA_CRYPTO_DRIVER_TEST) ) + case 0x7fffff: + return( mbedtls_test_opaque_get_builtin_key + (slot_number, + attributes, + key_buffer, + key_buffer_size, + key_buffer_length + )); +#endif + + +#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ + default: + (void) slot_number; + (void) key_buffer; + (void) key_buffer_size; + (void) key_buffer_length; + return( PSA_ERROR_DOES_NOT_EXIST ); + } + +} + +#endif /* MBEDTLS_PSA_CRYPTO_C */ diff --git a/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c b/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c new file mode 100644 index 0000000..808fce7 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c @@ -0,0 +1,251 @@ +/* Automatically generated by generate_ssl_debug_helpers.py. DO NOT EDIT. */ + +/** + * \file ssl_debug_helpers_generated.c + * + * \brief Automatically generated helper functions for debugging + */ +/* + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + * + */ + +#include "ssl_misc.h" + +#if defined(MBEDTLS_DEBUG_C) + +#include "ssl_debug_helpers.h" + + +const char *mbedtls_ssl_named_group_to_str( uint16_t in ) +{ + switch( in ) + { + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP192K1: + return "secp192k1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP192R1: + return "secp192r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP224K1: + return "secp224k1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP224R1: + return "secp224r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP256K1: + return "secp256k1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP256R1: + return "secp256r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP384R1: + return "secp384r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_SECP521R1: + return "secp521r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_BP256R1: + return "bp256r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_BP384R1: + return "bp384r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_BP512R1: + return "bp512r1"; + case MBEDTLS_SSL_IANA_TLS_GROUP_X25519: + return "x25519"; + case MBEDTLS_SSL_IANA_TLS_GROUP_X448: + return "x448"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE2048: + return "ffdhe2048"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE3072: + return "ffdhe3072"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE4096: + return "ffdhe4096"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE6144: + return "ffdhe6144"; + case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE8192: + return "ffdhe8192"; + }; + + return "UNKNOWN"; +} +const char *mbedtls_ssl_sig_alg_to_str( uint16_t in ) +{ + switch( in ) + { + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA256: + return "rsa_pkcs1_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA384: + return "rsa_pkcs1_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA512: + return "rsa_pkcs1_sha512"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP256R1_SHA256: + return "ecdsa_secp256r1_sha256"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP384R1_SHA384: + return "ecdsa_secp384r1_sha384"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SECP521R1_SHA512: + return "ecdsa_secp521r1_sha512"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA256: + return "rsa_pss_rsae_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA384: + return "rsa_pss_rsae_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA512: + return "rsa_pss_rsae_sha512"; + case MBEDTLS_TLS1_3_SIG_ED25519: + return "ed25519"; + case MBEDTLS_TLS1_3_SIG_ED448: + return "ed448"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA256: + return "rsa_pss_pss_sha256"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA384: + return "rsa_pss_pss_sha384"; + case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA512: + return "rsa_pss_pss_sha512"; + case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA1: + return "rsa_pkcs1_sha1"; + case MBEDTLS_TLS1_3_SIG_ECDSA_SHA1: + return "ecdsa_sha1"; + case MBEDTLS_TLS1_3_SIG_NONE: + return "none"; + }; + + return "UNKNOWN"; +} +const char *mbedtls_ssl_states_str( mbedtls_ssl_states in ) +{ + switch (in) { + case MBEDTLS_SSL_HELLO_REQUEST: + return "MBEDTLS_SSL_HELLO_REQUEST"; + case MBEDTLS_SSL_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_HELLO: + return "MBEDTLS_SSL_SERVER_HELLO"; + case MBEDTLS_SSL_SERVER_CERTIFICATE: + return "MBEDTLS_SSL_SERVER_CERTIFICATE"; + case MBEDTLS_SSL_SERVER_KEY_EXCHANGE: + return "MBEDTLS_SSL_SERVER_KEY_EXCHANGE"; + case MBEDTLS_SSL_CERTIFICATE_REQUEST: + return "MBEDTLS_SSL_CERTIFICATE_REQUEST"; + case MBEDTLS_SSL_SERVER_HELLO_DONE: + return "MBEDTLS_SSL_SERVER_HELLO_DONE"; + case MBEDTLS_SSL_CLIENT_CERTIFICATE: + return "MBEDTLS_SSL_CLIENT_CERTIFICATE"; + case MBEDTLS_SSL_CLIENT_KEY_EXCHANGE: + return "MBEDTLS_SSL_CLIENT_KEY_EXCHANGE"; + case MBEDTLS_SSL_CERTIFICATE_VERIFY: + return "MBEDTLS_SSL_CERTIFICATE_VERIFY"; + case MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC: + return "MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC"; + case MBEDTLS_SSL_CLIENT_FINISHED: + return "MBEDTLS_SSL_CLIENT_FINISHED"; + case MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC: + return "MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC"; + case MBEDTLS_SSL_SERVER_FINISHED: + return "MBEDTLS_SSL_SERVER_FINISHED"; + case MBEDTLS_SSL_FLUSH_BUFFERS: + return "MBEDTLS_SSL_FLUSH_BUFFERS"; + case MBEDTLS_SSL_HANDSHAKE_WRAPUP: + return "MBEDTLS_SSL_HANDSHAKE_WRAPUP"; + case MBEDTLS_SSL_NEW_SESSION_TICKET: + return "MBEDTLS_SSL_NEW_SESSION_TICKET"; + case MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT: + return "MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT"; + case MBEDTLS_SSL_HELLO_RETRY_REQUEST: + return "MBEDTLS_SSL_HELLO_RETRY_REQUEST"; + case MBEDTLS_SSL_ENCRYPTED_EXTENSIONS: + return "MBEDTLS_SSL_ENCRYPTED_EXTENSIONS"; + case MBEDTLS_SSL_END_OF_EARLY_DATA: + return "MBEDTLS_SSL_END_OF_EARLY_DATA"; + case MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY: + return "MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY"; + case MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED: + return "MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED"; + case MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO: + return "MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO"; + case MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO: + return "MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO"; + case MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST: + return "MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST"; + case MBEDTLS_SSL_HANDSHAKE_OVER: + return "MBEDTLS_SSL_HANDSHAKE_OVER"; + case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET: + return "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET"; + case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH: + return "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH"; + default: + return "UNKNOWN_VALUE"; + } +} + +#if defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_CLI_C) +const char *mbedtls_ssl_early_data_status_str( mbedtls_ssl_early_data_status in ) +{ + switch (in) { + case MBEDTLS_SSL_EARLY_DATA_STATUS_NOT_INDICATED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_NOT_INDICATED"; + case MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED"; + case MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED: + return "MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED"; + default: + return "UNKNOWN_VALUE"; + } +} + +#endif /* defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_CLI_C) */ +const char *mbedtls_ssl_protocol_version_str( mbedtls_ssl_protocol_version in ) +{ + switch (in) { + case MBEDTLS_SSL_VERSION_UNKNOWN: + return "MBEDTLS_SSL_VERSION_UNKNOWN"; + case MBEDTLS_SSL_VERSION_TLS1_2: + return "MBEDTLS_SSL_VERSION_TLS1_2"; + case MBEDTLS_SSL_VERSION_TLS1_3: + return "MBEDTLS_SSL_VERSION_TLS1_3"; + default: + return "UNKNOWN_VALUE"; + } +} + +const char *mbedtls_tls_prf_types_str( mbedtls_tls_prf_types in ) +{ + switch (in) { + case MBEDTLS_SSL_TLS_PRF_NONE: + return "MBEDTLS_SSL_TLS_PRF_NONE"; + case MBEDTLS_SSL_TLS_PRF_SHA384: + return "MBEDTLS_SSL_TLS_PRF_SHA384"; + case MBEDTLS_SSL_TLS_PRF_SHA256: + return "MBEDTLS_SSL_TLS_PRF_SHA256"; + case MBEDTLS_SSL_HKDF_EXPAND_SHA384: + return "MBEDTLS_SSL_HKDF_EXPAND_SHA384"; + case MBEDTLS_SSL_HKDF_EXPAND_SHA256: + return "MBEDTLS_SSL_HKDF_EXPAND_SHA256"; + default: + return "UNKNOWN_VALUE"; + } +} + +const char *mbedtls_ssl_key_export_type_str( mbedtls_ssl_key_export_type in ) +{ + switch (in) { + case MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET"; +#if defined(MBEDTLS_SSL_PROTO_TLS1_3) + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET"; + case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET: + return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET"; +#endif + default: + return "UNKNOWN_VALUE"; + } +} + + + +#endif /* MBEDTLS_DEBUG_C */ +/* End of automatically generated file. */ + diff --git a/build/esp-idf/mbedtls/mbedtls/library/version_features.c b/build/esp-idf/mbedtls/mbedtls/library/version_features.c new file mode 100644 index 0000000..4fd1029 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/version_features.c @@ -0,0 +1,853 @@ +/* + * Version feature information + * + * Copyright The Mbed TLS Contributors + * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later + */ + +#include "common.h" + +#if defined(MBEDTLS_VERSION_C) + +#include "mbedtls/version.h" + +#include + +static const char * const features[] = { +#if defined(MBEDTLS_VERSION_FEATURES) + #if defined(MBEDTLS_HAVE_ASM) + "HAVE_ASM", //no-check-names +#endif /* MBEDTLS_HAVE_ASM */ +#if defined(MBEDTLS_NO_UDBL_DIVISION) + "NO_UDBL_DIVISION", //no-check-names +#endif /* MBEDTLS_NO_UDBL_DIVISION */ +#if defined(MBEDTLS_NO_64BIT_MULTIPLICATION) + "NO_64BIT_MULTIPLICATION", //no-check-names +#endif /* MBEDTLS_NO_64BIT_MULTIPLICATION */ +#if defined(MBEDTLS_HAVE_SSE2) + "HAVE_SSE2", //no-check-names +#endif /* MBEDTLS_HAVE_SSE2 */ +#if defined(MBEDTLS_HAVE_TIME) + "HAVE_TIME", //no-check-names +#endif /* MBEDTLS_HAVE_TIME */ +#if defined(MBEDTLS_HAVE_TIME_DATE) + "HAVE_TIME_DATE", //no-check-names +#endif /* MBEDTLS_HAVE_TIME_DATE */ +#if defined(MBEDTLS_PLATFORM_MEMORY) + "PLATFORM_MEMORY", //no-check-names +#endif /* MBEDTLS_PLATFORM_MEMORY */ +#if defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) + "PLATFORM_NO_STD_FUNCTIONS", //no-check-names +#endif /* MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */ +#if defined(MBEDTLS_PLATFORM_SETBUF_ALT) + "PLATFORM_SETBUF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SETBUF_ALT */ +#if defined(MBEDTLS_PLATFORM_EXIT_ALT) + "PLATFORM_EXIT_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_EXIT_ALT */ +#if defined(MBEDTLS_PLATFORM_TIME_ALT) + "PLATFORM_TIME_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_TIME_ALT */ +#if defined(MBEDTLS_PLATFORM_FPRINTF_ALT) + "PLATFORM_FPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_FPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_PRINTF_ALT) + "PLATFORM_PRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_PRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) + "PLATFORM_SNPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SNPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) + "PLATFORM_VSNPRINTF_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_VSNPRINTF_ALT */ +#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT) + "PLATFORM_NV_SEED_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */ +#if defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT) + "PLATFORM_SETUP_TEARDOWN_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */ +#if defined(MBEDTLS_PLATFORM_MS_TIME_ALT) + "PLATFORM_MS_TIME_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_MS_TIME_ALT */ +#if defined(MBEDTLS_PLATFORM_GMTIME_R_ALT) + "PLATFORM_GMTIME_R_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_GMTIME_R_ALT */ +#if defined(MBEDTLS_PLATFORM_ZEROIZE_ALT) + "PLATFORM_ZEROIZE_ALT", //no-check-names +#endif /* MBEDTLS_PLATFORM_ZEROIZE_ALT */ +#if defined(MBEDTLS_DEPRECATED_WARNING) + "DEPRECATED_WARNING", //no-check-names +#endif /* MBEDTLS_DEPRECATED_WARNING */ +#if defined(MBEDTLS_DEPRECATED_REMOVED) + "DEPRECATED_REMOVED", //no-check-names +#endif /* MBEDTLS_DEPRECATED_REMOVED */ +#if defined(MBEDTLS_TIMING_ALT) + "TIMING_ALT", //no-check-names +#endif /* MBEDTLS_TIMING_ALT */ +#if defined(MBEDTLS_AES_ALT) + "AES_ALT", //no-check-names +#endif /* MBEDTLS_AES_ALT */ +#if defined(MBEDTLS_ARIA_ALT) + "ARIA_ALT", //no-check-names +#endif /* MBEDTLS_ARIA_ALT */ +#if defined(MBEDTLS_CAMELLIA_ALT) + "CAMELLIA_ALT", //no-check-names +#endif /* MBEDTLS_CAMELLIA_ALT */ +#if defined(MBEDTLS_CCM_ALT) + "CCM_ALT", //no-check-names +#endif /* MBEDTLS_CCM_ALT */ +#if defined(MBEDTLS_CHACHA20_ALT) + "CHACHA20_ALT", //no-check-names +#endif /* MBEDTLS_CHACHA20_ALT */ +#if defined(MBEDTLS_CHACHAPOLY_ALT) + "CHACHAPOLY_ALT", //no-check-names +#endif /* MBEDTLS_CHACHAPOLY_ALT */ +#if defined(MBEDTLS_CMAC_ALT) + "CMAC_ALT", //no-check-names +#endif /* MBEDTLS_CMAC_ALT */ +#if defined(MBEDTLS_DES_ALT) + "DES_ALT", //no-check-names +#endif /* MBEDTLS_DES_ALT */ +#if defined(MBEDTLS_DHM_ALT) + "DHM_ALT", //no-check-names +#endif /* MBEDTLS_DHM_ALT */ +#if defined(MBEDTLS_ECJPAKE_ALT) + "ECJPAKE_ALT", //no-check-names +#endif /* MBEDTLS_ECJPAKE_ALT */ +#if defined(MBEDTLS_GCM_ALT) + "GCM_ALT", //no-check-names +#endif /* MBEDTLS_GCM_ALT */ +#if defined(MBEDTLS_NIST_KW_ALT) + "NIST_KW_ALT", //no-check-names +#endif /* MBEDTLS_NIST_KW_ALT */ +#if defined(MBEDTLS_MD5_ALT) + "MD5_ALT", //no-check-names +#endif /* MBEDTLS_MD5_ALT */ +#if defined(MBEDTLS_POLY1305_ALT) + "POLY1305_ALT", //no-check-names +#endif /* MBEDTLS_POLY1305_ALT */ +#if defined(MBEDTLS_RIPEMD160_ALT) + "RIPEMD160_ALT", //no-check-names +#endif /* MBEDTLS_RIPEMD160_ALT */ +#if defined(MBEDTLS_RSA_ALT) + "RSA_ALT", //no-check-names +#endif /* MBEDTLS_RSA_ALT */ +#if defined(MBEDTLS_SHA1_ALT) + "SHA1_ALT", //no-check-names +#endif /* MBEDTLS_SHA1_ALT */ +#if defined(MBEDTLS_SHA256_ALT) + "SHA256_ALT", //no-check-names +#endif /* MBEDTLS_SHA256_ALT */ +#if defined(MBEDTLS_SHA512_ALT) + "SHA512_ALT", //no-check-names +#endif /* MBEDTLS_SHA512_ALT */ +#if defined(MBEDTLS_ECP_ALT) + "ECP_ALT", //no-check-names +#endif /* MBEDTLS_ECP_ALT */ +#if defined(MBEDTLS_MD5_PROCESS_ALT) + "MD5_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_MD5_PROCESS_ALT */ +#if defined(MBEDTLS_RIPEMD160_PROCESS_ALT) + "RIPEMD160_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_RIPEMD160_PROCESS_ALT */ +#if defined(MBEDTLS_SHA1_PROCESS_ALT) + "SHA1_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA1_PROCESS_ALT */ +#if defined(MBEDTLS_SHA256_PROCESS_ALT) + "SHA256_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA256_PROCESS_ALT */ +#if defined(MBEDTLS_SHA512_PROCESS_ALT) + "SHA512_PROCESS_ALT", //no-check-names +#endif /* MBEDTLS_SHA512_PROCESS_ALT */ +#if defined(MBEDTLS_DES_SETKEY_ALT) + "DES_SETKEY_ALT", //no-check-names +#endif /* MBEDTLS_DES_SETKEY_ALT */ +#if defined(MBEDTLS_DES_CRYPT_ECB_ALT) + "DES_CRYPT_ECB_ALT", //no-check-names +#endif /* MBEDTLS_DES_CRYPT_ECB_ALT */ +#if defined(MBEDTLS_DES3_CRYPT_ECB_ALT) + "DES3_CRYPT_ECB_ALT", //no-check-names +#endif /* MBEDTLS_DES3_CRYPT_ECB_ALT */ +#if defined(MBEDTLS_AES_SETKEY_ENC_ALT) + "AES_SETKEY_ENC_ALT", //no-check-names +#endif /* MBEDTLS_AES_SETKEY_ENC_ALT */ +#if defined(MBEDTLS_AES_SETKEY_DEC_ALT) + "AES_SETKEY_DEC_ALT", //no-check-names +#endif /* MBEDTLS_AES_SETKEY_DEC_ALT */ +#if defined(MBEDTLS_AES_ENCRYPT_ALT) + "AES_ENCRYPT_ALT", //no-check-names +#endif /* MBEDTLS_AES_ENCRYPT_ALT */ +#if defined(MBEDTLS_AES_DECRYPT_ALT) + "AES_DECRYPT_ALT", //no-check-names +#endif /* MBEDTLS_AES_DECRYPT_ALT */ +#if defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT) + "ECDH_GEN_PUBLIC_ALT", //no-check-names +#endif /* MBEDTLS_ECDH_GEN_PUBLIC_ALT */ +#if defined(MBEDTLS_ECDH_COMPUTE_SHARED_ALT) + "ECDH_COMPUTE_SHARED_ALT", //no-check-names +#endif /* MBEDTLS_ECDH_COMPUTE_SHARED_ALT */ +#if defined(MBEDTLS_ECDSA_VERIFY_ALT) + "ECDSA_VERIFY_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_VERIFY_ALT */ +#if defined(MBEDTLS_ECDSA_SIGN_ALT) + "ECDSA_SIGN_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_SIGN_ALT */ +#if defined(MBEDTLS_ECDSA_GENKEY_ALT) + "ECDSA_GENKEY_ALT", //no-check-names +#endif /* MBEDTLS_ECDSA_GENKEY_ALT */ +#if defined(MBEDTLS_ECP_INTERNAL_ALT) + "ECP_INTERNAL_ALT", //no-check-names +#endif /* MBEDTLS_ECP_INTERNAL_ALT */ +#if defined(MBEDTLS_ECP_NO_FALLBACK) + "ECP_NO_FALLBACK", //no-check-names +#endif /* MBEDTLS_ECP_NO_FALLBACK */ +#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT) + "ECP_RANDOMIZE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_RANDOMIZE_JAC_ALT */ +#if defined(MBEDTLS_ECP_ADD_MIXED_ALT) + "ECP_ADD_MIXED_ALT", //no-check-names +#endif /* MBEDTLS_ECP_ADD_MIXED_ALT */ +#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) + "ECP_DOUBLE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_DOUBLE_JAC_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT) + "ECP_NORMALIZE_JAC_MANY_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT) + "ECP_NORMALIZE_JAC_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_JAC_ALT */ +#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) + "ECP_DOUBLE_ADD_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT */ +#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) + "ECP_RANDOMIZE_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */ +#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT) + "ECP_NORMALIZE_MXZ_ALT", //no-check-names +#endif /* MBEDTLS_ECP_NORMALIZE_MXZ_ALT */ +#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT) + "ENTROPY_HARDWARE_ALT", //no-check-names +#endif /* MBEDTLS_ENTROPY_HARDWARE_ALT */ +#if defined(MBEDTLS_AES_ROM_TABLES) + "AES_ROM_TABLES", //no-check-names +#endif /* MBEDTLS_AES_ROM_TABLES */ +#if defined(MBEDTLS_AES_FEWER_TABLES) + "AES_FEWER_TABLES", //no-check-names +#endif /* MBEDTLS_AES_FEWER_TABLES */ +#if defined(MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH) + "AES_ONLY_128_BIT_KEY_LENGTH", //no-check-names +#endif /* MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH */ +#if defined(MBEDTLS_AES_USE_HARDWARE_ONLY) + "AES_USE_HARDWARE_ONLY", //no-check-names +#endif /* MBEDTLS_AES_USE_HARDWARE_ONLY */ +#if defined(MBEDTLS_CAMELLIA_SMALL_MEMORY) + "CAMELLIA_SMALL_MEMORY", //no-check-names +#endif /* MBEDTLS_CAMELLIA_SMALL_MEMORY */ +#if defined(MBEDTLS_CHECK_RETURN_WARNING) + "CHECK_RETURN_WARNING", //no-check-names +#endif /* MBEDTLS_CHECK_RETURN_WARNING */ +#if defined(MBEDTLS_CIPHER_MODE_CBC) + "CIPHER_MODE_CBC", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CBC */ +#if defined(MBEDTLS_CIPHER_MODE_CFB) + "CIPHER_MODE_CFB", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CFB */ +#if defined(MBEDTLS_CIPHER_MODE_CTR) + "CIPHER_MODE_CTR", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_CTR */ +#if defined(MBEDTLS_CIPHER_MODE_OFB) + "CIPHER_MODE_OFB", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_OFB */ +#if defined(MBEDTLS_CIPHER_MODE_XTS) + "CIPHER_MODE_XTS", //no-check-names +#endif /* MBEDTLS_CIPHER_MODE_XTS */ +#if defined(MBEDTLS_CIPHER_NULL_CIPHER) + "CIPHER_NULL_CIPHER", //no-check-names +#endif /* MBEDTLS_CIPHER_NULL_CIPHER */ +#if defined(MBEDTLS_CIPHER_PADDING_PKCS7) + "CIPHER_PADDING_PKCS7", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */ +#if defined(MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS) + "CIPHER_PADDING_ONE_AND_ZEROS", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS */ +#if defined(MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN) + "CIPHER_PADDING_ZEROS_AND_LEN", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN */ +#if defined(MBEDTLS_CIPHER_PADDING_ZEROS) + "CIPHER_PADDING_ZEROS", //no-check-names +#endif /* MBEDTLS_CIPHER_PADDING_ZEROS */ +#if defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY) + "CTR_DRBG_USE_128_BIT_KEY", //no-check-names +#endif /* MBEDTLS_CTR_DRBG_USE_128_BIT_KEY */ +#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED) + "ECDH_VARIANT_EVEREST_ENABLED", //no-check-names +#endif /* MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) + "ECP_DP_SECP192R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) + "ECP_DP_SECP224R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP224R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) + "ECP_DP_SECP256R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP256R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) + "ECP_DP_SECP384R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP384R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) + "ECP_DP_SECP521R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) + "ECP_DP_SECP192K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP192K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) + "ECP_DP_SECP224K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED) + "ECP_DP_SECP256K1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_SECP256K1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) + "ECP_DP_BP256R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP256R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) + "ECP_DP_BP384R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP384R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) + "ECP_DP_BP512R1_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */ +#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) + "ECP_DP_CURVE25519_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_CURVE25519_ENABLED */ +#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) + "ECP_DP_CURVE448_ENABLED", //no-check-names +#endif /* MBEDTLS_ECP_DP_CURVE448_ENABLED */ +#if defined(MBEDTLS_ECP_NIST_OPTIM) + "ECP_NIST_OPTIM", //no-check-names +#endif /* MBEDTLS_ECP_NIST_OPTIM */ +#if defined(MBEDTLS_ECP_RESTARTABLE) + "ECP_RESTARTABLE", //no-check-names +#endif /* MBEDTLS_ECP_RESTARTABLE */ +#if defined(MBEDTLS_ECP_WITH_MPI_UINT) + "ECP_WITH_MPI_UINT", //no-check-names +#endif /* MBEDTLS_ECP_WITH_MPI_UINT */ +#if defined(MBEDTLS_ECDSA_DETERMINISTIC) + "ECDSA_DETERMINISTIC", //no-check-names +#endif /* MBEDTLS_ECDSA_DETERMINISTIC */ +#if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) + "KEY_EXCHANGE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) + "KEY_EXCHANGE_DHE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED) + "KEY_EXCHANGE_ECDHE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) + "KEY_EXCHANGE_RSA_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) + "KEY_EXCHANGE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) + "KEY_EXCHANGE_DHE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) + "KEY_EXCHANGE_ECDHE_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) + "KEY_EXCHANGE_ECDHE_ECDSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) + "KEY_EXCHANGE_ECDH_ECDSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) + "KEY_EXCHANGE_ECDH_RSA_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED */ +#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) + "KEY_EXCHANGE_ECJPAKE_ENABLED", //no-check-names +#endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */ +#if defined(MBEDTLS_PK_PARSE_EC_EXTENDED) + "PK_PARSE_EC_EXTENDED", //no-check-names +#endif /* MBEDTLS_PK_PARSE_EC_EXTENDED */ +#if defined(MBEDTLS_PK_PARSE_EC_COMPRESSED) + "PK_PARSE_EC_COMPRESSED", //no-check-names +#endif /* MBEDTLS_PK_PARSE_EC_COMPRESSED */ +#if defined(MBEDTLS_ERROR_STRERROR_DUMMY) + "ERROR_STRERROR_DUMMY", //no-check-names +#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */ +#if defined(MBEDTLS_GENPRIME) + "GENPRIME", //no-check-names +#endif /* MBEDTLS_GENPRIME */ +#if defined(MBEDTLS_FS_IO) + "FS_IO", //no-check-names +#endif /* MBEDTLS_FS_IO */ +#if defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES) + "NO_DEFAULT_ENTROPY_SOURCES", //no-check-names +#endif /* MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES */ +#if defined(MBEDTLS_NO_PLATFORM_ENTROPY) + "NO_PLATFORM_ENTROPY", //no-check-names +#endif /* MBEDTLS_NO_PLATFORM_ENTROPY */ +#if defined(MBEDTLS_ENTROPY_FORCE_SHA256) + "ENTROPY_FORCE_SHA256", //no-check-names +#endif /* MBEDTLS_ENTROPY_FORCE_SHA256 */ +#if defined(MBEDTLS_ENTROPY_NV_SEED) + "ENTROPY_NV_SEED", //no-check-names +#endif /* MBEDTLS_ENTROPY_NV_SEED */ +#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER) + "PSA_CRYPTO_KEY_ID_ENCODES_OWNER", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */ +#if defined(MBEDTLS_MEMORY_DEBUG) + "MEMORY_DEBUG", //no-check-names +#endif /* MBEDTLS_MEMORY_DEBUG */ +#if defined(MBEDTLS_MEMORY_BACKTRACE) + "MEMORY_BACKTRACE", //no-check-names +#endif /* MBEDTLS_MEMORY_BACKTRACE */ +#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT) + "PK_RSA_ALT_SUPPORT", //no-check-names +#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */ +#if defined(MBEDTLS_PKCS1_V15) + "PKCS1_V15", //no-check-names +#endif /* MBEDTLS_PKCS1_V15 */ +#if defined(MBEDTLS_PKCS1_V21) + "PKCS1_V21", //no-check-names +#endif /* MBEDTLS_PKCS1_V21 */ +#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) + "PSA_CRYPTO_BUILTIN_KEYS", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */ +#if defined(MBEDTLS_PSA_CRYPTO_CLIENT) + "PSA_CRYPTO_CLIENT", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_CLIENT */ +#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) + "PSA_CRYPTO_EXTERNAL_RNG", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */ +#if defined(MBEDTLS_PSA_CRYPTO_SPM) + "PSA_CRYPTO_SPM", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_SPM */ +#if defined(MBEDTLS_PSA_KEY_STORE_DYNAMIC) + "PSA_KEY_STORE_DYNAMIC", //no-check-names +#endif /* MBEDTLS_PSA_KEY_STORE_DYNAMIC */ +#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) + "PSA_P256M_DRIVER_ENABLED", //no-check-names +#endif /* MBEDTLS_PSA_P256M_DRIVER_ENABLED */ +#if defined(MBEDTLS_PSA_INJECT_ENTROPY) + "PSA_INJECT_ENTROPY", //no-check-names +#endif /* MBEDTLS_PSA_INJECT_ENTROPY */ +#if defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) + "PSA_ASSUME_EXCLUSIVE_BUFFERS", //no-check-names +#endif /* MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS */ +#if defined(MBEDTLS_RSA_NO_CRT) + "RSA_NO_CRT", //no-check-names +#endif /* MBEDTLS_RSA_NO_CRT */ +#if defined(MBEDTLS_SELF_TEST) + "SELF_TEST", //no-check-names +#endif /* MBEDTLS_SELF_TEST */ +#if defined(MBEDTLS_SHA256_SMALLER) + "SHA256_SMALLER", //no-check-names +#endif /* MBEDTLS_SHA256_SMALLER */ +#if defined(MBEDTLS_SHA512_SMALLER) + "SHA512_SMALLER", //no-check-names +#endif /* MBEDTLS_SHA512_SMALLER */ +#if defined(MBEDTLS_SSL_ALL_ALERT_MESSAGES) + "SSL_ALL_ALERT_MESSAGES", //no-check-names +#endif /* MBEDTLS_SSL_ALL_ALERT_MESSAGES */ +#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) + "SSL_DTLS_CONNECTION_ID", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ +#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT) + "SSL_DTLS_CONNECTION_ID_COMPAT", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT */ +#if defined(MBEDTLS_SSL_ASYNC_PRIVATE) + "SSL_ASYNC_PRIVATE", //no-check-names +#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */ +#if defined(MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME) + "SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME", //no-check-names +#endif /* MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME */ +#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) + "SSL_CONTEXT_SERIALIZATION", //no-check-names +#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */ +#if defined(MBEDTLS_SSL_DEBUG_ALL) + "SSL_DEBUG_ALL", //no-check-names +#endif /* MBEDTLS_SSL_DEBUG_ALL */ +#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) + "SSL_ENCRYPT_THEN_MAC", //no-check-names +#endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */ +#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) + "SSL_EXTENDED_MASTER_SECRET", //no-check-names +#endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */ +#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) + "SSL_KEEP_PEER_CERTIFICATE", //no-check-names +#endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */ +#if defined(MBEDTLS_SSL_KEYING_MATERIAL_EXPORT) + "SSL_KEYING_MATERIAL_EXPORT", //no-check-names +#endif /* MBEDTLS_SSL_KEYING_MATERIAL_EXPORT */ +#if defined(MBEDTLS_SSL_RENEGOTIATION) + "SSL_RENEGOTIATION", //no-check-names +#endif /* MBEDTLS_SSL_RENEGOTIATION */ +#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) + "SSL_MAX_FRAGMENT_LENGTH", //no-check-names +#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */ +#if defined(MBEDTLS_SSL_RECORD_SIZE_LIMIT) + "SSL_RECORD_SIZE_LIMIT", //no-check-names +#endif /* MBEDTLS_SSL_RECORD_SIZE_LIMIT */ +#if defined(MBEDTLS_SSL_PROTO_TLS1_2) + "SSL_PROTO_TLS1_2", //no-check-names +#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */ +#if defined(MBEDTLS_SSL_PROTO_TLS1_3) + "SSL_PROTO_TLS1_3", //no-check-names +#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */ +#if defined(MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE) + "SSL_TLS1_3_COMPATIBILITY_MODE", //no-check-names +#endif /* MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED) + "SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED", //no-check-names +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED) + "SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED", //no-check-names +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED */ +#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED) + "SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED", //no-check-names +#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED */ +#if defined(MBEDTLS_SSL_EARLY_DATA) + "SSL_EARLY_DATA", //no-check-names +#endif /* MBEDTLS_SSL_EARLY_DATA */ +#if defined(MBEDTLS_SSL_PROTO_DTLS) + "SSL_PROTO_DTLS", //no-check-names +#endif /* MBEDTLS_SSL_PROTO_DTLS */ +#if defined(MBEDTLS_SSL_ALPN) + "SSL_ALPN", //no-check-names +#endif /* MBEDTLS_SSL_ALPN */ +#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY) + "SSL_DTLS_ANTI_REPLAY", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */ +#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) + "SSL_DTLS_HELLO_VERIFY", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */ +#if defined(MBEDTLS_SSL_DTLS_SRTP) + "SSL_DTLS_SRTP", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_SRTP */ +#if defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE) + "SSL_DTLS_CLIENT_PORT_REUSE", //no-check-names +#endif /* MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE */ +#if defined(MBEDTLS_SSL_SESSION_TICKETS) + "SSL_SESSION_TICKETS", //no-check-names +#endif /* MBEDTLS_SSL_SESSION_TICKETS */ +#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION) + "SSL_SERVER_NAME_INDICATION", //no-check-names +#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */ +#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH) + "SSL_VARIABLE_BUFFER_LENGTH", //no-check-names +#endif /* MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH */ +#if defined(MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN) + "TEST_CONSTANT_FLOW_MEMSAN", //no-check-names +#endif /* MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN */ +#if defined(MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND) + "TEST_CONSTANT_FLOW_VALGRIND", //no-check-names +#endif /* MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND */ +#if defined(MBEDTLS_TEST_HOOKS) + "TEST_HOOKS", //no-check-names +#endif /* MBEDTLS_TEST_HOOKS */ +#if defined(MBEDTLS_THREADING_ALT) + "THREADING_ALT", //no-check-names +#endif /* MBEDTLS_THREADING_ALT */ +#if defined(MBEDTLS_THREADING_PTHREAD) + "THREADING_PTHREAD", //no-check-names +#endif /* MBEDTLS_THREADING_PTHREAD */ +#if defined(MBEDTLS_USE_PSA_CRYPTO) + "USE_PSA_CRYPTO", //no-check-names +#endif /* MBEDTLS_USE_PSA_CRYPTO */ +#if defined(MBEDTLS_PSA_CRYPTO_CONFIG) + "PSA_CRYPTO_CONFIG", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_CONFIG */ +#if defined(MBEDTLS_VERSION_FEATURES) + "VERSION_FEATURES", //no-check-names +#endif /* MBEDTLS_VERSION_FEATURES */ +#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) + "X509_TRUSTED_CERTIFICATE_CALLBACK", //no-check-names +#endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */ +#if defined(MBEDTLS_X509_REMOVE_INFO) + "X509_REMOVE_INFO", //no-check-names +#endif /* MBEDTLS_X509_REMOVE_INFO */ +#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT) + "X509_RSASSA_PSS_SUPPORT", //no-check-names +#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */ +#if defined(MBEDTLS_AESNI_C) + "AESNI_C", //no-check-names +#endif /* MBEDTLS_AESNI_C */ +#if defined(MBEDTLS_AESCE_C) + "AESCE_C", //no-check-names +#endif /* MBEDTLS_AESCE_C */ +#if defined(MBEDTLS_AES_C) + "AES_C", //no-check-names +#endif /* MBEDTLS_AES_C */ +#if defined(MBEDTLS_ASN1_PARSE_C) + "ASN1_PARSE_C", //no-check-names +#endif /* MBEDTLS_ASN1_PARSE_C */ +#if defined(MBEDTLS_ASN1_WRITE_C) + "ASN1_WRITE_C", //no-check-names +#endif /* MBEDTLS_ASN1_WRITE_C */ +#if defined(MBEDTLS_BASE64_C) + "BASE64_C", //no-check-names +#endif /* MBEDTLS_BASE64_C */ +#if defined(MBEDTLS_BLOCK_CIPHER_NO_DECRYPT) + "BLOCK_CIPHER_NO_DECRYPT", //no-check-names +#endif /* MBEDTLS_BLOCK_CIPHER_NO_DECRYPT */ +#if defined(MBEDTLS_BIGNUM_C) + "BIGNUM_C", //no-check-names +#endif /* MBEDTLS_BIGNUM_C */ +#if defined(MBEDTLS_CAMELLIA_C) + "CAMELLIA_C", //no-check-names +#endif /* MBEDTLS_CAMELLIA_C */ +#if defined(MBEDTLS_ARIA_C) + "ARIA_C", //no-check-names +#endif /* MBEDTLS_ARIA_C */ +#if defined(MBEDTLS_CCM_C) + "CCM_C", //no-check-names +#endif /* MBEDTLS_CCM_C */ +#if defined(MBEDTLS_CHACHA20_C) + "CHACHA20_C", //no-check-names +#endif /* MBEDTLS_CHACHA20_C */ +#if defined(MBEDTLS_CHACHAPOLY_C) + "CHACHAPOLY_C", //no-check-names +#endif /* MBEDTLS_CHACHAPOLY_C */ +#if defined(MBEDTLS_CIPHER_C) + "CIPHER_C", //no-check-names +#endif /* MBEDTLS_CIPHER_C */ +#if defined(MBEDTLS_CMAC_C) + "CMAC_C", //no-check-names +#endif /* MBEDTLS_CMAC_C */ +#if defined(MBEDTLS_CTR_DRBG_C) + "CTR_DRBG_C", //no-check-names +#endif /* MBEDTLS_CTR_DRBG_C */ +#if defined(MBEDTLS_DEBUG_C) + "DEBUG_C", //no-check-names +#endif /* MBEDTLS_DEBUG_C */ +#if defined(MBEDTLS_DES_C) + "DES_C", //no-check-names +#endif /* MBEDTLS_DES_C */ +#if defined(MBEDTLS_DHM_C) + "DHM_C", //no-check-names +#endif /* MBEDTLS_DHM_C */ +#if defined(MBEDTLS_ECDH_C) + "ECDH_C", //no-check-names +#endif /* MBEDTLS_ECDH_C */ +#if defined(MBEDTLS_ECDSA_C) + "ECDSA_C", //no-check-names +#endif /* MBEDTLS_ECDSA_C */ +#if defined(MBEDTLS_ECJPAKE_C) + "ECJPAKE_C", //no-check-names +#endif /* MBEDTLS_ECJPAKE_C */ +#if defined(MBEDTLS_ECP_C) + "ECP_C", //no-check-names +#endif /* MBEDTLS_ECP_C */ +#if defined(MBEDTLS_ENTROPY_C) + "ENTROPY_C", //no-check-names +#endif /* MBEDTLS_ENTROPY_C */ +#if defined(MBEDTLS_ERROR_C) + "ERROR_C", //no-check-names +#endif /* MBEDTLS_ERROR_C */ +#if defined(MBEDTLS_GCM_C) + "GCM_C", //no-check-names +#endif /* MBEDTLS_GCM_C */ +#if defined(MBEDTLS_GCM_LARGE_TABLE) + "GCM_LARGE_TABLE", //no-check-names +#endif /* MBEDTLS_GCM_LARGE_TABLE */ +#if defined(MBEDTLS_HKDF_C) + "HKDF_C", //no-check-names +#endif /* MBEDTLS_HKDF_C */ +#if defined(MBEDTLS_HMAC_DRBG_C) + "HMAC_DRBG_C", //no-check-names +#endif /* MBEDTLS_HMAC_DRBG_C */ +#if defined(MBEDTLS_LMS_C) + "LMS_C", //no-check-names +#endif /* MBEDTLS_LMS_C */ +#if defined(MBEDTLS_LMS_PRIVATE) + "LMS_PRIVATE", //no-check-names +#endif /* MBEDTLS_LMS_PRIVATE */ +#if defined(MBEDTLS_NIST_KW_C) + "NIST_KW_C", //no-check-names +#endif /* MBEDTLS_NIST_KW_C */ +#if defined(MBEDTLS_MD_C) + "MD_C", //no-check-names +#endif /* MBEDTLS_MD_C */ +#if defined(MBEDTLS_MD5_C) + "MD5_C", //no-check-names +#endif /* MBEDTLS_MD5_C */ +#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) + "MEMORY_BUFFER_ALLOC_C", //no-check-names +#endif /* MBEDTLS_MEMORY_BUFFER_ALLOC_C */ +#if defined(MBEDTLS_NET_C) + "NET_C", //no-check-names +#endif /* MBEDTLS_NET_C */ +#if defined(MBEDTLS_OID_C) + "OID_C", //no-check-names +#endif /* MBEDTLS_OID_C */ +#if defined(MBEDTLS_PADLOCK_C) + "PADLOCK_C", //no-check-names +#endif /* MBEDTLS_PADLOCK_C */ +#if defined(MBEDTLS_PEM_PARSE_C) + "PEM_PARSE_C", //no-check-names +#endif /* MBEDTLS_PEM_PARSE_C */ +#if defined(MBEDTLS_PEM_WRITE_C) + "PEM_WRITE_C", //no-check-names +#endif /* MBEDTLS_PEM_WRITE_C */ +#if defined(MBEDTLS_PK_C) + "PK_C", //no-check-names +#endif /* MBEDTLS_PK_C */ +#if defined(MBEDTLS_PK_PARSE_C) + "PK_PARSE_C", //no-check-names +#endif /* MBEDTLS_PK_PARSE_C */ +#if defined(MBEDTLS_PK_WRITE_C) + "PK_WRITE_C", //no-check-names +#endif /* MBEDTLS_PK_WRITE_C */ +#if defined(MBEDTLS_PKCS5_C) + "PKCS5_C", //no-check-names +#endif /* MBEDTLS_PKCS5_C */ +#if defined(MBEDTLS_PKCS7_C) + "PKCS7_C", //no-check-names +#endif /* MBEDTLS_PKCS7_C */ +#if defined(MBEDTLS_PKCS12_C) + "PKCS12_C", //no-check-names +#endif /* MBEDTLS_PKCS12_C */ +#if defined(MBEDTLS_PLATFORM_C) + "PLATFORM_C", //no-check-names +#endif /* MBEDTLS_PLATFORM_C */ +#if defined(MBEDTLS_POLY1305_C) + "POLY1305_C", //no-check-names +#endif /* MBEDTLS_POLY1305_C */ +#if defined(MBEDTLS_PSA_CRYPTO_C) + "PSA_CRYPTO_C", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_C */ +#if defined(MBEDTLS_PSA_CRYPTO_SE_C) + "PSA_CRYPTO_SE_C", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ +#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) + "PSA_CRYPTO_STORAGE_C", //no-check-names +#endif /* MBEDTLS_PSA_CRYPTO_STORAGE_C */ +#if defined(MBEDTLS_PSA_ITS_FILE_C) + "PSA_ITS_FILE_C", //no-check-names +#endif /* MBEDTLS_PSA_ITS_FILE_C */ +#if defined(MBEDTLS_PSA_STATIC_KEY_SLOTS) + "PSA_STATIC_KEY_SLOTS", //no-check-names +#endif /* MBEDTLS_PSA_STATIC_KEY_SLOTS */ +#if defined(MBEDTLS_RIPEMD160_C) + "RIPEMD160_C", //no-check-names +#endif /* MBEDTLS_RIPEMD160_C */ +#if defined(MBEDTLS_RSA_C) + "RSA_C", //no-check-names +#endif /* MBEDTLS_RSA_C */ +#if defined(MBEDTLS_SHA1_C) + "SHA1_C", //no-check-names +#endif /* MBEDTLS_SHA1_C */ +#if defined(MBEDTLS_SHA224_C) + "SHA224_C", //no-check-names +#endif /* MBEDTLS_SHA224_C */ +#if defined(MBEDTLS_SHA256_C) + "SHA256_C", //no-check-names +#endif /* MBEDTLS_SHA256_C */ +#if defined(MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT) + "SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT", //no-check-names +#endif /* MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT */ +#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT) + "SHA256_USE_A64_CRYPTO_IF_PRESENT", //no-check-names +#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT */ +#if defined(MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_ONLY) + "SHA256_USE_ARMV8_A_CRYPTO_ONLY", //no-check-names +#endif /* MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_ONLY */ +#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY) + "SHA256_USE_A64_CRYPTO_ONLY", //no-check-names +#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY */ +#if defined(MBEDTLS_SHA384_C) + "SHA384_C", //no-check-names +#endif /* MBEDTLS_SHA384_C */ +#if defined(MBEDTLS_SHA512_C) + "SHA512_C", //no-check-names +#endif /* MBEDTLS_SHA512_C */ +#if defined(MBEDTLS_SHA3_C) + "SHA3_C", //no-check-names +#endif /* MBEDTLS_SHA3_C */ +#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT) + "SHA512_USE_A64_CRYPTO_IF_PRESENT", //no-check-names +#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT */ +#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY) + "SHA512_USE_A64_CRYPTO_ONLY", //no-check-names +#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY */ +#if defined(MBEDTLS_SSL_CACHE_C) + "SSL_CACHE_C", //no-check-names +#endif /* MBEDTLS_SSL_CACHE_C */ +#if defined(MBEDTLS_SSL_COOKIE_C) + "SSL_COOKIE_C", //no-check-names +#endif /* MBEDTLS_SSL_COOKIE_C */ +#if defined(MBEDTLS_SSL_TICKET_C) + "SSL_TICKET_C", //no-check-names +#endif /* MBEDTLS_SSL_TICKET_C */ +#if defined(MBEDTLS_SSL_CLI_C) + "SSL_CLI_C", //no-check-names +#endif /* MBEDTLS_SSL_CLI_C */ +#if defined(MBEDTLS_SSL_SRV_C) + "SSL_SRV_C", //no-check-names +#endif /* MBEDTLS_SSL_SRV_C */ +#if defined(MBEDTLS_SSL_TLS_C) + "SSL_TLS_C", //no-check-names +#endif /* MBEDTLS_SSL_TLS_C */ +#if defined(MBEDTLS_THREADING_C) + "THREADING_C", //no-check-names +#endif /* MBEDTLS_THREADING_C */ +#if defined(MBEDTLS_TIMING_C) + "TIMING_C", //no-check-names +#endif /* MBEDTLS_TIMING_C */ +#if defined(MBEDTLS_VERSION_C) + "VERSION_C", //no-check-names +#endif /* MBEDTLS_VERSION_C */ +#if defined(MBEDTLS_X509_USE_C) + "X509_USE_C", //no-check-names +#endif /* MBEDTLS_X509_USE_C */ +#if defined(MBEDTLS_X509_CRT_PARSE_C) + "X509_CRT_PARSE_C", //no-check-names +#endif /* MBEDTLS_X509_CRT_PARSE_C */ +#if defined(MBEDTLS_X509_CRL_PARSE_C) + "X509_CRL_PARSE_C", //no-check-names +#endif /* MBEDTLS_X509_CRL_PARSE_C */ +#if defined(MBEDTLS_X509_CSR_PARSE_C) + "X509_CSR_PARSE_C", //no-check-names +#endif /* MBEDTLS_X509_CSR_PARSE_C */ +#if defined(MBEDTLS_X509_CREATE_C) + "X509_CREATE_C", //no-check-names +#endif /* MBEDTLS_X509_CREATE_C */ +#if defined(MBEDTLS_X509_CRT_WRITE_C) + "X509_CRT_WRITE_C", //no-check-names +#endif /* MBEDTLS_X509_CRT_WRITE_C */ +#if defined(MBEDTLS_X509_CSR_WRITE_C) + "X509_CSR_WRITE_C", //no-check-names +#endif /* MBEDTLS_X509_CSR_WRITE_C */ +#endif /* MBEDTLS_VERSION_FEATURES */ + NULL +}; + +int mbedtls_version_check_feature(const char *feature) +{ + const char * const *idx = features; + + if (*idx == NULL) { + return -2; + } + + if (feature == NULL) { + return -1; + } + + if (strncmp(feature, "MBEDTLS_", 8)) { + return -1; + } + + feature += 8; + + while (*idx != NULL) { + if (!strcmp(*idx, feature)) { + return 0; + } + idx++; + } + return -1; +} + +#endif /* MBEDTLS_VERSION_C */ diff --git a/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake new file mode 100644 index 0000000..f46cbeb --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/mbedtls/x509_crt_bundle b/build/esp-idf/mbedtls/x509_crt_bundle new file mode 100644 index 0000000..c718747 Binary files /dev/null and b/build/esp-idf/mbedtls/x509_crt_bundle differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj new file mode 100644 index 0000000..0beafb5 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj new file mode 100644 index 0000000..b0da100 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj new file mode 100644 index 0000000..12a4f46 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj new file mode 100644 index 0000000..11a613d Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj new file mode 100644 index 0000000..759b8e5 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj new file mode 100644 index 0000000..762786c Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj new file mode 100644 index 0000000..f554e2d Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj new file mode 100644 index 0000000..4e668d1 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj new file mode 100644 index 0000000..a0df614 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj new file mode 100644 index 0000000..6016d53 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj new file mode 100644 index 0000000..b3c0849 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj new file mode 100644 index 0000000..ad4e475 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj new file mode 100644 index 0000000..06ee733 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj new file mode 100644 index 0000000..9326809 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj new file mode 100644 index 0000000..6c22687 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj new file mode 100644 index 0000000..1d4221e Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj new file mode 100644 index 0000000..58e9624 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj new file mode 100644 index 0000000..472649b Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj new file mode 100644 index 0000000..137c5c7 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj new file mode 100644 index 0000000..73053d8 Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj differ diff --git a/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj new file mode 100644 index 0000000..8d2c31d Binary files /dev/null and b/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj differ diff --git a/build/esp-idf/newlib/cmake_install.cmake b/build/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..107d2b4 --- /dev/null +++ b/build/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/newlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/src/port/cmake_install.cmake") +endif() + diff --git a/build/esp-idf/newlib/libnewlib.a b/build/esp-idf/newlib/libnewlib.a new file mode 100644 index 0000000..a8b89dc Binary files /dev/null and b/build/esp-idf/newlib/libnewlib.a differ diff --git a/build/esp-idf/newlib/src/port/cmake_install.cmake b/build/esp-idf/newlib/src/port/cmake_install.cmake new file mode 100644 index 0000000..05282a7 --- /dev/null +++ b/build/esp-idf/newlib/src/port/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/partition_table/cmake_install.cmake b/build/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..d482ff0 --- /dev/null +++ b/build/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/partition_table/partition-table-flash_args.in b/build/esp-idf/partition_table/partition-table-flash_args.in new file mode 100644 index 0000000..ecfd9ba --- /dev/null +++ b/build/esp-idf/partition_table/partition-table-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj new file mode 100644 index 0000000..2f981b3 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj new file mode 100644 index 0000000..a1c7451 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj new file mode 100644 index 0000000..389415d Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj new file mode 100644 index 0000000..59429d7 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj new file mode 100644 index 0000000..1f30263 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj differ diff --git a/build/esp-idf/pthread/cmake_install.cmake b/build/esp-idf/pthread/cmake_install.cmake new file mode 100644 index 0000000..b55dbbd --- /dev/null +++ b/build/esp-idf/pthread/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/pthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/pthread/libpthread.a b/build/esp-idf/pthread/libpthread.a new file mode 100644 index 0000000..c658070 Binary files /dev/null and b/build/esp-idf/pthread/libpthread.a differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj new file mode 100644 index 0000000..d2ce210 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj new file mode 100644 index 0000000..9ac35b1 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj new file mode 100644 index 0000000..fb3afb4 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj new file mode 100644 index 0000000..fef031d Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj new file mode 100644 index 0000000..805b927 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj new file mode 100644 index 0000000..68ca382 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj new file mode 100644 index 0000000..72dea86 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj differ diff --git a/build/esp-idf/sdmmc/cmake_install.cmake b/build/esp-idf/sdmmc/cmake_install.cmake new file mode 100644 index 0000000..007b438 --- /dev/null +++ b/build/esp-idf/sdmmc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj new file mode 100644 index 0000000..b8e679f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj new file mode 100644 index 0000000..0726d66 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/adc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj new file mode 100644 index 0000000..4fb35a0 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/cam_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj new file mode 100644 index 0000000..b8a66de Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/dedic_gpio_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj new file mode 100644 index 0000000..184e670 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gdma_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj new file mode 100644 index 0000000..55fd625 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/gpio_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj new file mode 100644 index 0000000..cf70a50 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2c_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj new file mode 100644 index 0000000..4a5826a Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/i2s_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj new file mode 100644 index 0000000..9094e30 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/interrupts.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj new file mode 100644 index 0000000..0977dc7 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/lcd_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj new file mode 100644 index 0000000..eaadb2b Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/ledc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj new file mode 100644 index 0000000..f409bb0 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mcpwm_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj new file mode 100644 index 0000000..658e3d4 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/mpi_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj new file mode 100644 index 0000000..c9b501f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/pcnt_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj new file mode 100644 index 0000000..b79f1bc Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/power_supply_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj new file mode 100644 index 0000000..f91a58b Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rmt_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj new file mode 100644 index 0000000..f7a2dd9 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/rtc_io_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj new file mode 100644 index 0000000..020989a Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdm_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj new file mode 100644 index 0000000..3590e7a Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/sdmmc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj new file mode 100644 index 0000000..f1ce05a Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/spi_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj new file mode 100644 index 0000000..4acd502 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/temperature_sensor_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj new file mode 100644 index 0000000..538442f Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/timer_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj new file mode 100644 index 0000000..f08299b Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/touch_sensor_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj new file mode 100644 index 0000000..b08502e Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/twai_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj new file mode 100644 index 0000000..99e3721 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/uart_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj new file mode 100644 index 0000000..780dc9d Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/usb_dwc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj new file mode 100644 index 0000000..28936fd Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32s3/wdt_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj new file mode 100644 index 0000000..e5f19bb Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj differ diff --git a/build/esp-idf/soc/cmake_install.cmake b/build/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..03d1c21 --- /dev/null +++ b/build/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/soc/libsoc.a b/build/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..f70be93 Binary files /dev/null and b/build/esp-idf/soc/libsoc.a differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj new file mode 100644 index 0000000..9fd6ce3 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj new file mode 100644 index 0000000..827dc3c Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32s3/spi_flash_oct_flash_init.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj new file mode 100644 index 0000000..fd7f329 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj new file mode 100644 index 0000000..d446bc1 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj new file mode 100644 index 0000000..5d148c3 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj new file mode 100644 index 0000000..1bf6725 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj new file mode 100644 index 0000000..5e88e0c Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj new file mode 100644 index 0000000..86e82a3 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj new file mode 100644 index 0000000..4d75bd8 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj new file mode 100644 index 0000000..5c2627d Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj new file mode 100644 index 0000000..1a4c2b9 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj new file mode 100644 index 0000000..37f2589 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj new file mode 100644 index 0000000..b93c4f6 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj new file mode 100644 index 0000000..73f5390 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj new file mode 100644 index 0000000..0d70bf9 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj new file mode 100644 index 0000000..cc9c048 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj new file mode 100644 index 0000000..339730b Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj new file mode 100644 index 0000000..ba1fe21 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_hpm_enable.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj new file mode 100644 index 0000000..3d92cb8 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj new file mode 100644 index 0000000..b2ae7ce Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj new file mode 100644 index 0000000..c640ac9 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj differ diff --git a/build/esp-idf/spi_flash/cmake_install.cmake b/build/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..9d61c2b --- /dev/null +++ b/build/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/spi_flash/libspi_flash.a b/build/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..a8b9388 Binary files /dev/null and b/build/esp-idf/spi_flash/libspi_flash.a differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj new file mode 100644 index 0000000..257dac6 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj new file mode 100644 index 0000000..6bbe7e2 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj new file mode 100644 index 0000000..286bdbd Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj new file mode 100644 index 0000000..b355cdd Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj new file mode 100644 index 0000000..ad6f0a5 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj new file mode 100644 index 0000000..322cd9a Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj differ diff --git a/build/esp-idf/xtensa/cmake_install.cmake b/build/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..73194bd --- /dev/null +++ b/build/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/signal_generator") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(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 "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe") +endif() + diff --git a/build/esp-idf/xtensa/libxtensa.a b/build/esp-idf/xtensa/libxtensa.a new file mode 100644 index 0000000..72e0773 Binary files /dev/null and b/build/esp-idf/xtensa/libxtensa.a differ diff --git a/build/flash_app_args b/build/flash_app_args new file mode 100644 index 0000000..acff1e9 --- /dev/null +++ b/build/flash_app_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x10000 signal_generator.bin diff --git a/build/flash_args b/build/flash_args new file mode 100644 index 0000000..7776083 --- /dev/null +++ b/build/flash_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 signal_generator.bin +0x8000 partition_table/partition-table.bin diff --git a/build/flash_args.in b/build/flash_args.in new file mode 100644 index 0000000..880728a --- /dev/null +++ b/build/flash_args.in @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 $.bin +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/build/flash_bootloader_args b/build/flash_bootloader_args new file mode 100644 index 0000000..7b1a5bd --- /dev/null +++ b/build/flash_bootloader_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin diff --git a/build/flash_project_args b/build/flash_project_args new file mode 100644 index 0000000..7776083 --- /dev/null +++ b/build/flash_project_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x0 bootloader/bootloader.bin +0x10000 signal_generator.bin +0x8000 partition_table/partition-table.bin diff --git a/build/flasher_args.json b/build/flasher_args.json new file mode 100644 index 0000000..8c4e2d8 --- /dev/null +++ b/build/flasher_args.json @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "2MB", + "--flash_freq", "80m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "80m" + }, + "flash_files" : { + "0x0" : "bootloader/bootloader.bin", + "0x10000" : "signal_generator.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "signal_generator.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : true, + "chip" : "esp32s3" + } +} diff --git a/build/gdbinit/connect b/build/gdbinit/connect new file mode 100644 index 0000000..faa3857 --- /dev/null +++ b/build/gdbinit/connect @@ -0,0 +1,7 @@ +# Connect to the default openocd-esp port and stop on app_main() +set remotetimeout 10 +target remote :3333 +monitor reset halt +maintenance flush register-cache +thbreak app_main +continue diff --git a/build/gdbinit/gdbinit b/build/gdbinit/gdbinit new file mode 100644 index 0000000..d5388e1 --- /dev/null +++ b/build/gdbinit/gdbinit @@ -0,0 +1,2 @@ +source E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/gdbinit/symbols +source E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/gdbinit/connect diff --git a/build/gdbinit/prefix_map b/build/gdbinit/prefix_map new file mode 100644 index 0000000..c7842ec --- /dev/null +++ b/build/gdbinit/prefix_map @@ -0,0 +1 @@ +# There is no prefix map defined for the project. diff --git a/build/gdbinit/py_extensions b/build/gdbinit/py_extensions new file mode 100644 index 0000000..336f995 --- /dev/null +++ b/build/gdbinit/py_extensions @@ -0,0 +1,7 @@ +# Add Python GDB extensions +python +try: + import freertos_gdb +except ModuleNotFoundError: + print('warning: python extension "freertos_gdb" not found.') +end diff --git a/build/gdbinit/symbols b/build/gdbinit/symbols new file mode 100644 index 0000000..8aefa5f --- /dev/null +++ b/build/gdbinit/symbols @@ -0,0 +1,20 @@ +# Load esp32s3 ROM ELF symbols +define target hookpost-remote +set confirm off + # if $_streq((char *) 0x3ff194ad, "Mar 1 2021") + if (*(int*) 0x3ff194ad) == 0x2072614d && (*(int*) 0x3ff194b1) == 0x32203120 && (*(int*) 0x3ff194b5) == 0x313230 + add-symbol-file e:/QX_Tech/ESP32_Test/tools/esp-rom-elfs/20241011/esp32s3_rev0_rom.elf + else + echo Warning: Unknown esp32s3 ROM revision.\n + end +set confirm on +end + + +# Load bootloader symbols +set confirm off + add-symbol-file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.elf +set confirm on + +# Load application symbols +file E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/signal_generator.elf diff --git a/build/kconfigs.in b/build/kconfigs.in new file mode 100644 index 0000000..c4a7565 --- /dev/null +++ b/build/kconfigs.in @@ -0,0 +1,40 @@ +source "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/heap/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/log/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/Kconfig" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/Kconfig" \ No newline at end of file diff --git a/build/kconfigs_projbuild.in b/build/kconfigs_projbuild.in new file mode 100644 index 0000000..bfd4e0e --- /dev/null +++ b/build/kconfigs_projbuild.in @@ -0,0 +1,6 @@ +source "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild" +source "D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" +source "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/Kconfig.projbuild" \ No newline at end of file diff --git a/build/ldgen_libraries b/build/ldgen_libraries new file mode 100644 index 0000000..e76e2a0 --- /dev/null +++ b/build/ldgen_libraries @@ -0,0 +1,96 @@ +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/libxtensa.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/libcxx.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/libnewlib.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/libfreertos.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/libesp_hw_support.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/libheap.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/liblog.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/libsoc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/libhal.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/libesp_rom.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/libesp_common.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/libesp_system.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/libxtensa.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/libspi_flash.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/libbootloader_support.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/libmbedtls.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/libesp_pm.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/libesp_timer.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/libesp_security.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/libefuse.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/libesp_partition.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/libapp_update.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/libesp_app_format.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/libesp_mm.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/libesp_mm.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/libesp_security.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/libpthread.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/libesp_timer.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/libesp_pm.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/libmbedtls.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/libesp_app_format.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/libapp_update.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/libesp_partition.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/libefuse.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/libbootloader_support.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/libspi_flash.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/libesp_system.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/libesp_common.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/libesp_rom.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/libhal.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/liblog.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/libheap.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/libsoc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/libesp_hw_support.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/libfreertos.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/libnewlib.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/libpthread.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/libcxx.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/libesp_driver_spi.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/libsdmmc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/libsdmmc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/libesp_driver_spi.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/libesp_driver_uart.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/libesp_driver_twai.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/libdriver.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/libesp_driver_uart.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/libesp_driver_twai.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/libesp_adc.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/libdriver.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/libmain.a +E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/libesp_adc.a diff --git a/build/ldgen_libraries.in b/build/ldgen_libraries.in new file mode 100644 index 0000000..503df9b --- /dev/null +++ b/build/ldgen_libraries.in @@ -0,0 +1,96 @@ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ \ No newline at end of file diff --git a/build/partition-table-flash_args b/build/partition-table-flash_args new file mode 100644 index 0000000..703accc --- /dev/null +++ b/build/partition-table-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 80m --flash_size 2MB +0x8000 partition_table/partition-table.bin diff --git a/build/partition_table/partition-table.bin b/build/partition_table/partition-table.bin new file mode 100644 index 0000000..b8fa03b Binary files /dev/null and b/build/partition_table/partition-table.bin differ diff --git a/build/project_description.json b/build/project_description.json new file mode 100644 index 0000000..fc7a023 --- /dev/null +++ b/build/project_description.json @@ -0,0 +1,2160 @@ +{ + "version": "1.2", + "project_name": "signal_generator", + "project_version": "1", + "project_path": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator", + "idf_path": "D:/ESP_IDF/v5.5.1/esp-idf", + "build_dir": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", + "config_file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig", + "config_defaults": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/sdkconfig.defaults", + "bootloader_elf": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/bootloader/bootloader.elf", + "app_elf": "signal_generator.elf", + "app_bin": "signal_generator.bin", + "build_type": "flash_app", + "git_revision": "v5.5.1", + "target": "esp32s3", + "rev": "", + "min_rev": "0", + "max_rev": "99", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32s3-elf-", + "c_compiler": "E:/QX_Tech/ESP32_Test/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/hal/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/heap/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/log/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/soc/Kconfig;D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild;E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/Kconfig.projbuild" + }, + "common_component_reqs": [ "cxx", "newlib", "freertos", "esp_hw_support", "heap", "log", "soc", "hal", "esp_rom", "esp_common", "esp_system", "xtensa" ], + "build_components" : [ "app_update", "bootloader", "bootloader_support", "cxx", "driver", "efuse", "esp_adc", "esp_app_format", "esp_bootloader_format", "esp_common", "esp_driver_ana_cmpr", "esp_driver_bitscrambler", "esp_driver_dac", "esp_driver_gpio", "esp_driver_gptimer", "esp_driver_i2c", "esp_driver_i2s", "esp_driver_ledc", "esp_driver_mcpwm", "esp_driver_parlio", "esp_driver_pcnt", "esp_driver_rmt", "esp_driver_sdio", "esp_driver_sdm", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_spi", "esp_driver_tsens", "esp_driver_twai", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_hw_support", "esp_mm", "esp_partition", "esp_pm", "esp_ringbuf", "esp_rom", "esp_security", "esp_system", "esp_timer", "esptool_py", "freertos", "hal", "heap", "log", "main", "mbedtls", "newlib", "partition_table", "pthread", "sdmmc", "soc", "spi_flash", "xtensa", "" ], + "build_component_paths" : [ "D:/ESP_IDF/v5.5.1/esp-idf/components/app_update", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support", "D:/ESP_IDF/v5.5.1/esp-idf/components/cxx", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer", "D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal", "D:/ESP_IDF/v5.5.1/esp-idf/components/heap", "D:/ESP_IDF/v5.5.1/esp-idf/components/log", "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main", "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib", "D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table", "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread", "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash", "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa", "" ], + "build_component_info" : { + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/app_update", + "type": "LIBRARY", + "lib": "__idf_app_update", + "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], + "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/app_update/libapp_update.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/app_update/esp_ota_ops.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/app_update/esp_ota_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader", + "type": "CONFIG_ONLY", + "lib": "__idf_bootloader", + "reqs": [], + "priv_reqs": [ "partition_table", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "bootloader_support": { + "alias": "idf::bootloader_support", + "target": "___idf_bootloader_support", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support", + "type": "LIBRARY", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32s3.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support/src/esp32s3/secure_boot_secure_features.c" ], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/cxx", + "type": "LIBRARY", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "esp_system", "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/cxx/libcxx.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/cxx/cxx_exception_stubs.cpp", "D:/ESP_IDF/v5.5.1/esp-idf/components/cxx/cxx_guards.cpp", "D:/ESP_IDF/v5.5.1/esp-idf/components/cxx/cxx_init.cpp" ], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/driver", + "type": "LIBRARY", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag", "esp_driver_twai" ], + "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/driver/libdriver.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/adc_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/timer_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/i2c/i2c.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/i2s_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/mcpwm_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/pcnt_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/rmt_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/touch_sensor_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/touch_sensor/esp32s3/touch_sensor.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/driver/twai/twai.c" ], + "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include", "touch_sensor/esp32s3/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/efuse/libefuse.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_table.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_fields.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_rtc_calib.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/esp32s3/esp_efuse_utility.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse/src/esp_efuse_startup.c" ], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc", + "type": "LIBRARY", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_adc/libesp_adc.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_oneshot.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_cali.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_cali_curve_fitting.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/esp_adc_cal_common_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_continuous.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_monitor.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/gdma/adc_dma.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/adc_filter.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/esp32s3/curve_fitting_coefficients.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc/deprecated/esp32s3/esp_adc_cal_legacy.c" ], + "include_dirs": [ "include", "interface", "esp32s3/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format", + "type": "LIBRARY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_app_format/libesp_app_format.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format/esp_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_common/libesp_common.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_bitscrambler": { + "alias": "idf::esp_driver_bitscrambler", + "target": "___idf_esp_driver_bitscrambler", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [], + "priv_reqs": [ "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio", + "type": "LIBRARY", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer", + "type": "LIBRARY", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c", + "type": "LIBRARY", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_master.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_slave.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s", + "type": "LIBRARY", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_std.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_platform.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc", + "type": "LIBRARY", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_driver_gpio" ], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc/src/ledc.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm", + "type": "LIBRARY", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt", + "type": "LIBRARY", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt", + "type": "LIBRARY", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_bytes.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_copy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_simple.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm/src/sdm.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/src/sdmmc_transaction.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc/src/sdmmc_host.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi", + "type": "LIBRARY", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_spi/libesp_driver_spi.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens", + "type": "LIBRARY", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_twai": { + "alias": "idf::esp_driver_twai", + "target": "___idf_esp_driver_twai", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai", + "type": "LIBRARY", + "lib": "__idf_esp_driver_twai", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_twai/libesp_driver_twai.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai_onchip.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart", + "type": "LIBRARY", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_uart/libesp_driver_uart.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/src/uart.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_wakeup.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart/src/uhci.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", + "type": "LIBRARY", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c" ], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/cpu.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/cpu_region_protect.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_clk.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/hw_random.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/intr_alloc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mac_addr.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/periph_ctrl.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/revision.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/rtc_module.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/io_mux.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_clk_tree.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_link.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/spi_bus_lock.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/clk_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_modem.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_modes.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_console.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_usb.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_gpio.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_event.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/systimer.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/mspi_timing_tuning.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/esp_clock_output.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/power_supply/brownout.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_clk_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_sleep.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/rtc_time.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/chip_info.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp32s3/esp_memprot.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/port/esp_memprot_conv.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/port/esp32s3/mspi_timing_by_mspi_delay.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32s3/sleep_cpu.c" ], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm", + "type": "LIBRARY", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_mm/libesp_mm.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/esp_mmu_map.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/port/esp32s3/ext_mem_layout.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/esp_cache_msync.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/esp_cache_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm/heap_align_hw.c" ], + "include_dirs": [ "include" ] + }, + "esp_partition": { + "alias": "idf::esp_partition", + "target": "___idf_esp_partition", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition", + "type": "LIBRARY", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_partition/libesp_partition.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/partition.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition/partition_target.c" ], + "include_dirs": [ "include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm", + "type": "LIBRARY", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_pm/libesp_pm.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/pm_locks.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/pm_trace.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm/pm_impl.c" ], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf", + "type": "LIBRARY", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_ringbuf/libesp_ringbuf.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf/ringbuf.c" ], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S" ], + "include_dirs": [ "include", "esp32s3/include", "esp32s3/include/esp32s3", "esp32s3" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security", + "type": "LIBRARY", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_security/libesp_security.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp_hmac.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp_ds.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_lock.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c" ], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_system/libesp_system.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_err.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/crosscore_int.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_ipc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_system_console.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/freertos_hooks.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/int_wdt.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/panic.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/esp_system.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/startup.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/startup_funcs.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/system_time.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/stack_check.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/ubsan.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/xt_wdt.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/cpu_start.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/panic_handler.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/esp_system_chip.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/image_process.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/esp_ipc_isr.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_port.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/panic_arch.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/panic_handler_asm.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers_asm.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/debug_stubs.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/arch/xtensa/trax.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/highint_hdl.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/clk.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/reset_reason.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/system_internal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/cache_err_int.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system/port/soc/esp32s3/apb_backup_dma.c" ], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer", + "type": "LIBRARY", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/esp_timer/libesp_timer.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/esp_timer.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/system_time.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c" ], + "include_dirs": [ "include" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py", + "type": "CONFIG_ONLY", + "lib": "__idf_esptool_py", + "reqs": [ "bootloader" ], + "priv_reqs": [ "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos", + "type": "LIBRARY", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/freertos/libfreertos.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/heap_idf.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/app_startup.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/port_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/port_systick.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions.c" ], + "include_dirs": [ "config/include", "config/include/freertos", "config/xtensa/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/xtensa/include", "FreeRTOS-Kernel/portable/xtensa/include/freertos", "esp_additions/include" ] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/hal/libhal.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/hal_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/mpu_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/efuse_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/efuse_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/mmu_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/cache_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/color_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_flash_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_flash_hal_iram.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/clk_tree_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/systimer_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/uart_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/uart_hal_iram.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/gpio_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/rtc_io_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/timer_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/ledc_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/ledc_hal_iram.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/i2c_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/i2c_hal_iram.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/rmt_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/pcnt_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/mcpwm_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/uhci_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/twai_hal_sja1000.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/gdma_hal_top.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/gdma_hal_ahb_v1.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/i2s_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/sdm_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/sdmmc_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/adc_hal_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/adc_oneshot_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/adc_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/lcd_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/mpi_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/sha_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/aes_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/brownout_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_hal_iram.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_slave_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_slave_hal_iram.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_slave_hd_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/spi_flash_hal_gpspi.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/hmac_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/ds_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/cam_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/usb_serial_jtag_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/usb_dwc_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/usb_wrap_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/touch_sensor_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/touch_sensor_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/touch_sens_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/xt_wdt_hal.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/hal/esp32s3/rtc_cntl_hal.c" ], + "include_dirs": [ "platform_port/include", "esp32s3/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/heap", + "type": "LIBRARY", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/heap/libheap.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/heap/heap_caps_base.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/heap/heap_caps.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/heap/heap_caps_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/heap/multi_heap.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/heap/tlsf/tlsf.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/heap/port/memory_layout_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/heap/port/esp32s3/memory_layout.c" ], + "include_dirs": [ "include", "tlsf" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal", "soc", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/log/liblog.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/os/log_timestamp.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/os/log_lock.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/os/util.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/util.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_format_text.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_print.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/os/log_write.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_level/log_level.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c" ], + "include_dirs": [ "include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [ "esp_driver_dac", "esp_driver_gpio", "esp_driver_gptimer", "esp_adc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/main/libmain.a", + "sources": [ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/dac_continuous_example_main.c", "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/dac_continuous_example_dma.c", "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main/dac_continuous_example_timer.c" ], + "include_dirs": [ "." ] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls", + "type": "LIBRARY", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/libmbedtls.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/x509_crt_bundle.S" ], + "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib", + "type": "LIBRARY", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/newlib/libnewlib.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/abort.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/assert.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/heap.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/locks.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/poll.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/pthread.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/random.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/getentropy.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/termios.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/stdatomic.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/time.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/sysconf.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/realpath.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/scandir.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/syscalls.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/reent_syscalls.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/flockfile.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/reent_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/newlib_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c" ], + "include_dirs": [ "platform_include" ] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table", + "type": "CONFIG_ONLY", + "lib": "__idf_partition_table", + "reqs": [], + "priv_reqs": [ "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "pthread": { + "alias": "idf::pthread", + "target": "___idf_pthread", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread", + "type": "LIBRARY", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/pthread/libpthread.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread_cond_var.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread_local_storage.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread_rwlock.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread/pthread_semaphore.c" ], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc", + "type": "LIBRARY", + "lib": "__idf_sdmmc", + "reqs": [], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/sdmmc/libsdmmc.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_cmd.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_io.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_mmc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sdmmc_sd.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c" ], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/soc/libsoc.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/lldesc.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/dport_access_common.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/interrupts.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/gpio_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/uart_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/adc_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/dedic_gpio_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/gdma_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/spi_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/ledc_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/pcnt_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/rmt_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/sdm_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/i2s_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/i2c_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/temperature_sensor_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/timer_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/lcd_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/mcpwm_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/mpi_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/sdmmc_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/touch_sensor_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/twai_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/wdt_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/usb_dwc_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/rtc_io_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/cam_periph.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/soc/esp32s3/power_supply_periph.c" ], + "include_dirs": [ "include", "esp32s3", "esp32s3/include", "esp32s3/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/flash_brownout_hook.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_hpm_enable.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_th.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/memspi_host_driver.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/cache_utils.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/flash_mmap.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/flash_ops.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/esp_flash_api.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/esp_flash_spi_init.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c" ], + "include_dirs": [ "include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/xtensa/libxtensa.a", + "sources": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/eri.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xt_trax.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xtensa_context.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xtensa_intr_asm.S", "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xtensa_intr.c", "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa/xtensa_vectors.S" ], + "include_dirs": [ "esp32s3/include", "include", "deprecated_include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/app_trace", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer" ], + "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/app_update", + "lib": "__idf_app_update", + "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], + "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader", + "lib": "__idf_bootloader", + "reqs": [], + "priv_reqs": [ "partition_table", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "bootloader_support": { + "alias": "idf::bootloader_support", + "target": "___idf_bootloader_support", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bootloader_support", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/bt", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio", "esp_gdbstub" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/cmock", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/console", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_vfs_console" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/cxx", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "esp_system", "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/driver", + "lib": "__idf_driver", + "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag", "esp_driver_twai" ], + "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include", "touch_sensor/esp32s3/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/efuse", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp-tls", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_adc", + "lib": "__idf_esp_adc", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "driver" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32s3/include", "deprecated/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_app_format", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_bootloader_format", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_coex": { + "alias": "idf::esp_coex", + "target": "___idf_esp_coex", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_coex", + "lib": "__idf_esp_coex", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_common", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_bitscrambler": { + "alias": "idf::esp_driver_bitscrambler", + "target": "___idf_esp_driver_bitscrambler", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_bitscrambler", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [], + "priv_reqs": [ "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_cam": { + "alias": "idf::esp_driver_cam", + "target": "___idf_esp_driver_cam", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_cam", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_dac", + "lib": "__idf_esp_driver_dac", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gpio", + "lib": "__idf_esp_driver_gpio", + "reqs": [], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_gptimer", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2c", + "lib": "__idf_esp_driver_i2c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_i2s", + "lib": "__idf_esp_driver_i2s", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_isp", + "lib": "__idf_esp_driver_isp", + "reqs": [ "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_jpeg": { + "alias": "idf::esp_driver_jpeg", + "target": "___idf_esp_driver_jpeg", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_jpeg", + "lib": "__idf_esp_driver_jpeg", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ledc", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_driver_gpio" ], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_mcpwm", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_parlio", + "lib": "__idf_esp_driver_parlio", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_pcnt", + "lib": "__idf_esp_driver_pcnt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ppa": { + "alias": "idf::esp_driver_ppa", + "target": "___idf_esp_driver_ppa", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_ppa", + "lib": "__idf_esp_driver_ppa", + "reqs": [], + "priv_reqs": [ "esp_mm", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_rmt", + "lib": "__idf_esp_driver_rmt", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdio", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdm", + "lib": "__idf_esp_driver_sdm", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdmmc", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "sdmmc", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_sdspi", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_spi", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_touch_sens", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_tsens", + "lib": "__idf_esp_driver_tsens", + "reqs": [], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_twai": { + "alias": "idf::esp_driver_twai", + "target": "___idf_esp_driver_twai", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_twai", + "lib": "__idf_esp_driver_twai", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_uart", + "lib": "__idf_esp_driver_uart", + "reqs": [], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_eth", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_event", + "lib": "__idf_esp_event", + "reqs": [ "log", "esp_common", "freertos" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_gdbstub": { + "alias": "idf::esp_gdbstub", + "target": "___idf_esp_gdbstub", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_gdbstub", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "soc", "esp_rom", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hid", + "lib": "__idf_esp_hid", + "reqs": [ "esp_event", "bt" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_http_client": { + "alias": "idf::esp_http_client", + "target": "___idf_esp_http_client", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_http_client", + "lib": "__idf_esp_http_client", + "reqs": [ "lwip", "esp_event" ], + "priv_reqs": [ "tcp_transport", "http_parser" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_http_server": { + "alias": "idf::esp_http_server", + "target": "___idf_esp_http_server", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_http_server", + "lib": "__idf_esp_http_server", + "reqs": [ "http_parser", "esp_event" ], + "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_https_ota": { + "alias": "idf::esp_https_ota", + "target": "___idf_esp_https_ota", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_https_ota", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_bootloader_format", "esp_app_format", "esp_event", "esp_partition" ], + "priv_reqs": [ "log", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_https_server": { + "alias": "idf::esp_https_server", + "target": "___idf_esp_https_server", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_https_server", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_hw_support", + "lib": "__idf_esp_hw_support", + "reqs": [ "soc" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "include/soc/esp32s3", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_lcd", + "lib": "__idf_esp_lcd", + "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_local_ctrl", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c", "esp_netif" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_mm", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_netif", + "lib": "__idf_esp_netif", + "reqs": [ "esp_event" ], + "priv_reqs": [ "esp_netif_stack" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif_stack": { + "alias": "idf::esp_netif_stack", + "target": "___idf_esp_netif_stack", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_netif_stack", + "lib": "__idf_esp_netif_stack", + "reqs": [ "lwip" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_partition": { + "alias": "idf::esp_partition", + "target": "___idf_esp_partition", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_partition", + "lib": "__idf_esp_partition", + "reqs": [], + "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_phy", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "efuse", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_pm", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_psram", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_ringbuf", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_rom", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3/include", "esp32s3/include/esp32s3", "esp32s3" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_security", + "lib": "__idf_esp_security", + "reqs": [], + "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_system", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_tee": { + "alias": "idf::esp_tee", + "target": "___idf_esp_tee", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_tee", + "lib": "__idf_esp_tee", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_timer", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_vfs_console": { + "alias": "idf::esp_vfs_console", + "target": "___idf_esp_vfs_console", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_vfs_console", + "lib": "__idf_esp_vfs_console", + "reqs": [], + "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esp_wifi", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/espcoredump", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/esptool_py", + "lib": "__idf_esptool_py", + "reqs": [ "bootloader" ], + "priv_reqs": [ "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "fatfs": { + "alias": "idf::fatfs", + "target": "___idf_fatfs", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/fatfs", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/freertos", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "config/include", "config/include/freertos", "config/xtensa/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/xtensa/include", "FreeRTOS-Kernel/portable/xtensa/include/freertos", "esp_additions/include" ] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/hal", + "lib": "__idf_hal", + "reqs": [ "soc", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32s3/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/heap", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/http_parser", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + }, + "idf_test": { + "alias": "idf::idf_test", + "target": "___idf_idf_test", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/idf_test", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32s3" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/ieee802154", + "lib": "__idf_ieee802154", + "reqs": [ "esp_coex" ], + "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "json": { + "alias": "idf::json", + "target": "___idf_json", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/json", + "lib": "__idf_json", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "cJSON" ] + }, + "linux": { + "alias": "idf::linux", + "target": "___idf_linux", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/linux", + "lib": "__idf_linux", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "cJSON" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/log", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal", "soc", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/lwip", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/mbedtls", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] + }, + "mqtt": { + "alias": "idf::mqtt", + "target": "___idf_mqtt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/mqtt", + "lib": "__idf_mqtt", + "reqs": [ "esp_event", "tcp_transport" ], + "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "D:/ESP_IDF/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include" ] + }, + "newlib": { + "alias": "idf::newlib", + "target": "___idf_newlib", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/newlib", + "lib": "__idf_newlib", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/nvs_flash", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash", "newlib" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/nvs_sec_provider", + "lib": "__idf_nvs_sec_provider", + "reqs": [], + "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "openthread": { + "alias": "idf::openthread", + "target": "___idf_openthread", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/openthread", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], + "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/partition_table", + "lib": "__idf_partition_table", + "reqs": [], + "priv_reqs": [ "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "perfmon": { + "alias": "idf::perfmon", + "target": "___idf_perfmon", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/perfmon", + "lib": "__idf_perfmon", + "reqs": [ "xtensa" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/protobuf-c", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "protobuf-c" ] + }, + "protocomm": { + "alias": "idf::protocomm", + "target": "___idf_protocomm", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/protocomm", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] + }, + "pthread": { + "alias": "idf::pthread", + "target": "___idf_pthread", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/pthread", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "riscv": { + "alias": "idf::riscv", + "target": "___idf_riscv", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/riscv", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/rt", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/sdmmc", + "lib": "__idf_sdmmc", + "reqs": [], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/soc", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32s3", "esp32s3/include", "esp32s3/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/spi_flash", + "lib": "__idf_spi_flash", + "reqs": [ "hal" ], + "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/spiffs", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/tcp_transport", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip", "esp_timer" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "touch_element": { + "alias": "idf::touch_element", + "target": "___idf_touch_element", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/touch_element", + "lib": "__idf_touch_element", + "reqs": [ "driver" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/ulp", + "lib": "__idf_ulp", + "reqs": [ "driver", "esp_adc" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/unity", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "unity/src" ] + }, + "usb": { + "alias": "idf::usb", + "target": "___idf_usb", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/usb", + "lib": "__idf_usb", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/vfs", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/wear_levelling", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wifi_provisioning": { + "alias": "idf::wifi_provisioning", + "target": "___idf_wifi_provisioning", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/wifi_provisioning", + "lib": "__idf_wifi_provisioning", + "reqs": [ "lwip", "protocomm" ], + "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/wpa_supplicant", + "lib": "__idf_wpa_supplicant", + "reqs": [], + "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "D:/ESP_IDF/v5.5.1/esp-idf/components/xtensa", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32s3/include", "include", "deprecated_include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/main", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [ "esp_driver_dac", "esp_driver_gpio", "esp_driver_gptimer", "esp_adc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + } + }, + "debug_prefix_map_gdbinit": "", + "gdbinit_files": { + "01_symbols": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/gdbinit/symbols", + "02_prefix_map": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/gdbinit/prefix_map", + "03_py_extensions": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/gdbinit/py_extensions", + "04_connect": "E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/gdbinit/connect" + }, + "debug_arguments_openocd": "-f board/esp32s3-builtin.cfg" +} diff --git a/build/project_elf_src_esp32s3.c b/build/project_elf_src_esp32s3.c new file mode 100644 index 0000000..e69de29 diff --git a/build/x509_crt_bundle.S b/build/x509_crt_bundle.S new file mode 100644 index 0000000..cf01da5 --- /dev/null +++ b/build/x509_crt_bundle.S @@ -0,0 +1,4336 @@ +/* * Data converted from E:/QX_Tech/Simulator/ESP32_TEST/signal_generator/build/esp-idf/mbedtls/x509_crt_bundle + */ +.data +#if !defined (__APPLE__) && !defined (__linux__) +.section .rodata.embedded +#endif + +.global x509_crt_bundle +x509_crt_bundle: + +.global _binary_x509_crt_bundle_start +_binary_x509_crt_bundle_start: /* for objcopy compatibility */ +.byte 0x58, 0x02, 0x00, 0x00, 0xb8, 0x03, 0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x7f, 0x08, 0x00, 0x00 +.byte 0xe4, 0x09, 0x00, 0x00, 0x49, 0x0c, 0x00, 0x00, 0xe3, 0x0c, 0x00, 0x00, 0x9a, 0x0d, 0x00, 0x00 +.byte 0x01, 0x10, 0x00, 0x00, 0x68, 0x11, 0x00, 0x00, 0xd0, 0x12, 0x00, 0x00, 0x39, 0x15, 0x00, 0x00 +.byte 0xf4, 0x15, 0x00, 0x00, 0x5d, 0x18, 0x00, 0x00, 0xca, 0x1a, 0x00, 0x00, 0x37, 0x1d, 0x00, 0x00 +.byte 0xa5, 0x1f, 0x00, 0x00, 0x14, 0x22, 0x00, 0x00, 0x84, 0x24, 0x00, 0x00, 0xf4, 0x25, 0x00, 0x00 +.byte 0x64, 0x27, 0x00, 0x00, 0xd5, 0x29, 0x00, 0x00, 0x46, 0x2c, 0x00, 0x00, 0xb7, 0x2e, 0x00, 0x00 +.byte 0x7a, 0x2f, 0x00, 0x00, 0x3e, 0x30, 0x00, 0x00, 0xb0, 0x32, 0x00, 0x00, 0x23, 0x35, 0x00, 0x00 +.byte 0xe8, 0x35, 0x00, 0x00, 0x5b, 0x38, 0x00, 0x00, 0xce, 0x3a, 0x00, 0x00, 0x93, 0x3b, 0x00, 0x00 +.byte 0x58, 0x3c, 0x00, 0x00, 0xcc, 0x3e, 0x00, 0x00, 0x40, 0x41, 0x00, 0x00, 0xb4, 0x43, 0x00, 0x00 +.byte 0x7a, 0x44, 0x00, 0x00, 0xee, 0x46, 0x00, 0x00, 0xb4, 0x47, 0x00, 0x00, 0x28, 0x4a, 0x00, 0x00 +.byte 0x9c, 0x4b, 0x00, 0x00, 0x12, 0x4e, 0x00, 0x00, 0x88, 0x4f, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00 +.byte 0x78, 0x53, 0x00, 0x00, 0x42, 0x54, 0x00, 0x00, 0xba, 0x56, 0x00, 0x00, 0x33, 0x59, 0x00, 0x00 +.byte 0xac, 0x5a, 0x00, 0x00, 0x25, 0x5d, 0x00, 0x00, 0x9e, 0x5f, 0x00, 0x00, 0x18, 0x62, 0x00, 0x00 +.byte 0x92, 0x64, 0x00, 0x00, 0x5e, 0x65, 0x00, 0x00, 0x2a, 0x66, 0x00, 0x00, 0xa4, 0x68, 0x00, 0x00 +.byte 0x1e, 0x6b, 0x00, 0x00, 0xea, 0x6b, 0x00, 0x00, 0xb6, 0x6c, 0x00, 0x00, 0x30, 0x6f, 0x00, 0x00 +.byte 0xab, 0x71, 0x00, 0x00, 0x26, 0x74, 0x00, 0x00, 0xf3, 0x74, 0x00, 0x00, 0x6f, 0x76, 0x00, 0x00 +.byte 0xeb, 0x78, 0x00, 0x00, 0x9c, 0x79, 0x00, 0x00, 0x6a, 0x7a, 0x00, 0x00, 0xe7, 0x7c, 0x00, 0x00 +.byte 0x64, 0x7e, 0x00, 0x00, 0xe1, 0x80, 0x00, 0x00, 0xb0, 0x81, 0x00, 0x00, 0x2d, 0x83, 0x00, 0x00 +.byte 0xaa, 0x85, 0x00, 0x00, 0x28, 0x88, 0x00, 0x00, 0xa8, 0x8a, 0x00, 0x00, 0x7a, 0x8b, 0x00, 0x00 +.byte 0xfc, 0x8d, 0x00, 0x00, 0x7e, 0x8f, 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x87, 0x93, 0x00, 0x00 +.byte 0x5f, 0x94, 0x00, 0x00, 0xe5, 0x96, 0x00, 0x00, 0x6b, 0x98, 0x00, 0x00, 0x43, 0x99, 0x00, 0x00 +.byte 0xcc, 0x9a, 0x00, 0x00, 0x56, 0x9d, 0x00, 0x00, 0x33, 0x9e, 0x00, 0x00, 0xbe, 0xa0, 0x00, 0x00 +.byte 0x49, 0xa2, 0x00, 0x00, 0x28, 0xa3, 0x00, 0x00, 0xb5, 0xa5, 0x00, 0x00, 0x42, 0xa7, 0x00, 0x00 +.byte 0xcf, 0xa8, 0x00, 0x00, 0xae, 0xa9, 0x00, 0x00, 0x3c, 0xac, 0x00, 0x00, 0xca, 0xae, 0x00, 0x00 +.byte 0xab, 0xaf, 0x00, 0x00, 0x3a, 0xb2, 0x00, 0x00, 0xc7, 0xb3, 0x00, 0x00, 0x58, 0xb5, 0x00, 0x00 +.byte 0xe9, 0xb6, 0x00, 0x00, 0xcc, 0xb7, 0x00, 0x00, 0xaf, 0xb8, 0x00, 0x00, 0x40, 0xbb, 0x00, 0x00 +.byte 0xd3, 0xbc, 0x00, 0x00, 0x65, 0xbe, 0x00, 0x00, 0xfa, 0xc0, 0x00, 0x00, 0xe3, 0xc1, 0x00, 0x00 +.byte 0x7a, 0xc4, 0x00, 0x00, 0x64, 0xc5, 0x00, 0x00, 0xfc, 0xc7, 0x00, 0x00, 0x94, 0xc9, 0x00, 0x00 +.byte 0x2d, 0xcb, 0x00, 0x00, 0x18, 0xcc, 0x00, 0x00, 0x04, 0xcd, 0x00, 0x00, 0x9f, 0xcf, 0x00, 0x00 +.byte 0x71, 0xd0, 0x00, 0x00, 0x63, 0xd1, 0x00, 0x00, 0x59, 0xd2, 0x00, 0x00, 0xff, 0xd4, 0x00, 0x00 +.byte 0xa6, 0xd6, 0x00, 0x00, 0xa0, 0xd7, 0x00, 0x00, 0x48, 0xda, 0x00, 0x00, 0xf2, 0xdb, 0x00, 0x00 +.byte 0xef, 0xdc, 0x00, 0x00, 0x9c, 0xdf, 0x00, 0x00, 0x4a, 0xe1, 0x00, 0x00, 0xf9, 0xe2, 0x00, 0x00 +.byte 0xa8, 0xe4, 0x00, 0x00, 0x57, 0xe6, 0x00, 0x00, 0x06, 0xe9, 0x00, 0x00, 0xb5, 0xea, 0x00, 0x00 +.byte 0x65, 0xec, 0x00, 0x00, 0x16, 0xef, 0x00, 0x00, 0x1a, 0xf0, 0x00, 0x00, 0xcc, 0xf2, 0x00, 0x00 +.byte 0x81, 0xf5, 0x00, 0x00, 0x88, 0xf6, 0x00, 0x00, 0x3d, 0xf9, 0x00, 0x00, 0xf9, 0xfa, 0x00, 0x00 +.byte 0xec, 0xfb, 0x00, 0x00, 0xfc, 0xfc, 0x00, 0x00, 0xc1, 0xfe, 0x00, 0x00, 0x94, 0x01, 0x01, 0x00 +.byte 0x68, 0x03, 0x01, 0x00, 0x91, 0x04, 0x01, 0x00, 0x6e, 0x06, 0x01, 0x00, 0x4f, 0x08, 0x01, 0x00 +.byte 0x3a, 0x0a, 0x01, 0x00, 0x78, 0x0b, 0x01, 0x00, 0x36, 0x00, 0x26, 0x01, 0x30, 0x34, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31 +.byte 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x08, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67 +.byte 0x6e, 0x61, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xc8, 0x68, 0xf1, 0xc9, 0xd6, 0xd6, 0xb3, 0x34, 0x75, 0x26, 0x82, 0x1e, 0xec +.byte 0xb4, 0xbe, 0xea, 0x5c, 0xe1, 0x26, 0xed, 0x11, 0x47, 0x61, 0xe1, 0xa2, 0x7c, 0x16, 0x78, 0x40 +.byte 0x21, 0xe4, 0x60, 0x9e, 0x5a, 0xc8, 0x63, 0xe1, 0xc4, 0xb1, 0x96, 0x92, 0xff, 0x18, 0x6d, 0x69 +.byte 0x23, 0xe1, 0x2b, 0x62, 0xf7, 0xdd, 0xe2, 0x36, 0x2f, 0x91, 0x07, 0xb9, 0x48, 0xcf, 0x0e, 0xec +.byte 0x79, 0xb6, 0x2c, 0xe7, 0x34, 0x4b, 0x70, 0x08, 0x25, 0xa3, 0x3c, 0x87, 0x1b, 0x19, 0xf2, 0x81 +.byte 0x07, 0x0f, 0x38, 0x90, 0x19, 0xd3, 0x11, 0xfe, 0x86, 0xb4, 0xf2, 0xd1, 0x5e, 0x1e, 0x1e, 0x96 +.byte 0xcd, 0x80, 0x6c, 0xce, 0x3b, 0x31, 0x93, 0xb6, 0xf2, 0xa0, 0xd0, 0xa9, 0x95, 0x12, 0x7d, 0xa5 +.byte 0x9a, 0xcc, 0x6b, 0xc8, 0x84, 0x56, 0x8a, 0x33, 0xa9, 0xe7, 0x22, 0x15, 0x53, 0x16, 0xf0, 0xcc +.byte 0x17, 0xec, 0x57, 0x5f, 0xe9, 0xa2, 0x0a, 0x98, 0x09, 0xde, 0xe3, 0x5f, 0x9c, 0x6f, 0xdc, 0x48 +.byte 0xe3, 0x85, 0x0b, 0x15, 0x5a, 0xa6, 0xba, 0x9f, 0xac, 0x48, 0xe3, 0x09, 0xb2, 0xf7, 0xf4, 0x32 +.byte 0xde, 0x5e, 0x34, 0xbe, 0x1c, 0x78, 0x5d, 0x42, 0x5b, 0xce, 0x0e, 0x22, 0x8f, 0x4d, 0x90, 0xd7 +.byte 0x7d, 0x32, 0x18, 0xb3, 0x0b, 0x2c, 0x6a, 0xbf, 0x8e, 0x3f, 0x14, 0x11, 0x89, 0x20, 0x0e, 0x77 +.byte 0x14, 0xb5, 0x3d, 0x94, 0x08, 0x87, 0xf7, 0x25, 0x1e, 0xd5, 0xb2, 0x60, 0x00, 0xec, 0x6f, 0x2a +.byte 0x28, 0x25, 0x6e, 0x2a, 0x3e, 0x18, 0x63, 0x17, 0x25, 0x3f, 0x3e, 0x44, 0x20, 0x16, 0xf6, 0x26 +.byte 0xc8, 0x25, 0xae, 0x05, 0x4a, 0xb4, 0xe7, 0x63, 0x2c, 0xf3, 0x8c, 0x16, 0x53, 0x7e, 0x5c, 0xfb +.byte 0x11, 0x1a, 0x08, 0xc1, 0x46, 0x62, 0x9f, 0x22, 0xb8, 0xf1, 0xc2, 0x8d, 0x69, 0xdc, 0xfa, 0x3a +.byte 0x58, 0x06, 0xdf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x39, 0x00, 0x26, 0x02, 0x30, 0x37, 0x31, 0x14 +.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f +.byte 0x6e, 0x65, 0x72, 0x61, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54 +.byte 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 0x76, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc2, 0xbe, 0xeb, 0x27, 0xf0, 0x21, 0xa3, 0xf3, 0x69, 0x26 +.byte 0x55, 0x7e, 0x9d, 0xc5, 0x55, 0x16, 0x91, 0x5c, 0xfd, 0xef, 0x21, 0xbf, 0x53, 0x80, 0x7a, 0x2d +.byte 0xd2, 0x91, 0x8c, 0x63, 0x31, 0xf0, 0xec, 0x24, 0xf0, 0xc3, 0xa5, 0xd2, 0x72, 0x7c, 0x10, 0x6d +.byte 0xf4, 0x37, 0xb7, 0xe5, 0xe6, 0x7c, 0x79, 0xea, 0x8c, 0xb5, 0x82, 0x8b, 0xae, 0x48, 0xb6, 0xac +.byte 0x00, 0xdc, 0x65, 0x75, 0xec, 0x2a, 0x4d, 0x5f, 0xc1, 0x87, 0xf5, 0x20, 0x65, 0x2b, 0x81, 0xa8 +.byte 0x47, 0x3e, 0x89, 0x23, 0x95, 0x30, 0x16, 0x90, 0x7f, 0xe8, 0x57, 0x07, 0x48, 0xe7, 0x19, 0xae +.byte 0xbf, 0x45, 0x67, 0xb1, 0x37, 0x1b, 0x06, 0x2a, 0xfe, 0xde, 0xf9, 0xac, 0x7d, 0x83, 0xfb, 0x5e +.byte 0xba, 0xe4, 0x8f, 0x97, 0x67, 0xbe, 0x4b, 0x8e, 0x8d, 0x64, 0x07, 0x57, 0x38, 0x55, 0x69, 0x34 +.byte 0x36, 0x3d, 0x13, 0x48, 0xef, 0x4f, 0xe2, 0xd3, 0x66, 0x1e, 0xa4, 0xcf, 0x1a, 0xb7, 0x5e, 0x36 +.byte 0x33, 0xd4, 0xb4, 0x06, 0xbd, 0x18, 0x01, 0xfd, 0x77, 0x84, 0x50, 0x00, 0x45, 0xf5, 0x8c, 0x5d +.byte 0xe8, 0x23, 0xbc, 0x7e, 0xfe, 0x35, 0xe1, 0xed, 0x50, 0x7b, 0xa9, 0x30, 0x8d, 0x19, 0xd3, 0x09 +.byte 0x8e, 0x68, 0x67, 0x5d, 0xbf, 0x3c, 0x97, 0x18, 0x53, 0xbb, 0x29, 0x62, 0xc5, 0xca, 0x5e, 0x72 +.byte 0xc1, 0xc7, 0x96, 0xd4, 0xdb, 0x2d, 0xa0, 0xb4, 0x1f, 0x69, 0x03, 0xec, 0xea, 0xe2, 0x50, 0xf1 +.byte 0x0c, 0x3c, 0xf0, 0xac, 0xf3, 0x53, 0x2d, 0xf0, 0x1c, 0xf5, 0xed, 0x6c, 0x39, 0x39, 0x73, 0x80 +.byte 0x16, 0xc8, 0x52, 0xb0, 0x23, 0xcd, 0xe0, 0x3e, 0xdc, 0xdd, 0x3c, 0x47, 0xa0, 0xbb, 0x35, 0x8a +.byte 0xe2, 0x98, 0x68, 0x8b, 0xbe, 0xe5, 0xbf, 0x72, 0xee, 0xd2, 0xfa, 0xa5, 0xed, 0x12, 0xed, 0xfc +.byte 0x98, 0x18, 0xa9, 0x26, 0x76, 0xdc, 0x28, 0x4b, 0x10, 0x20, 0x1c, 0xd3, 0x7f, 0x16, 0x77, 0x2d +.byte 0xed, 0x6f, 0x80, 0xf7, 0x49, 0xbb, 0x53, 0x05, 0xbb, 0x5d, 0x68, 0xc7, 0xd4, 0xc8, 0x75, 0x16 +.byte 0x3f, 0x89, 0x5a, 0x8b, 0xf7, 0x17, 0x47, 0xd4, 0x4c, 0xf1, 0xd2, 0x89, 0x79, 0x3e, 0x4d, 0x3d +.byte 0x98, 0xa8, 0x61, 0xde, 0x3a, 0x1e, 0xd2, 0xf8, 0x5e, 0x03, 0xe0, 0xc1, 0xc9, 0x1c, 0x8c, 0xd3 +.byte 0x8d, 0x4d, 0xd3, 0x95, 0x36, 0xb3, 0x37, 0x5f, 0x63, 0x63, 0x9b, 0x33, 0x14, 0xf0, 0x2d, 0x26 +.byte 0x6b, 0x53, 0x7c, 0x89, 0x8c, 0x32, 0xc2, 0x6e, 0xec, 0x3d, 0x21, 0x00, 0x39, 0xc9, 0xa1, 0x68 +.byte 0xe2, 0x50, 0x83, 0x2e, 0xb0, 0x3a, 0x2b, 0xf3, 0x36, 0xa0, 0xac, 0x2f, 0xe4, 0x6f, 0x61, 0xc2 +.byte 0x51, 0x09, 0x39, 0x3e, 0x8b, 0x53, 0xb9, 0xbb, 0x67, 0xda, 0xdc, 0x53, 0xb9, 0x76, 0x59, 0x36 +.byte 0x9d, 0x43, 0xe5, 0x20, 0xe0, 0x3d, 0x32, 0x60, 0x85, 0x22, 0x51, 0xb7, 0xc7, 0x33, 0xbb, 0xdd +.byte 0x15, 0x2f, 0xa4, 0x78, 0xa6, 0x07, 0x7b, 0x81, 0x46, 0x36, 0x04, 0x86, 0xdd, 0x79, 0x35, 0xc7 +.byte 0x95, 0x2c, 0x3b, 0xb0, 0xa3, 0x17, 0x35, 0xe5, 0x73, 0x1f, 0xb4, 0x5c, 0x59, 0xef, 0xda, 0xea +.byte 0x10, 0x65, 0x7b, 0x7a, 0xd0, 0x7f, 0x9f, 0xb3, 0xb4, 0x2a, 0x37, 0x3b, 0x70, 0x8b, 0x9b, 0x5b +.byte 0xb9, 0x2b, 0xb7, 0xec, 0xb2, 0x51, 0x12, 0x97, 0x53, 0x29, 0x5a, 0xd4, 0xf0, 0x12, 0x10, 0xdc +.byte 0x4f, 0x02, 0xbb, 0x12, 0x92, 0x2f, 0x62, 0xd4, 0x3f, 0x69, 0x43, 0x7c, 0x0d, 0xd6, 0xfc, 0x58 +.byte 0x75, 0x01, 0x88, 0x9d, 0x58, 0x16, 0x4b, 0xde, 0xba, 0x90, 0xff, 0x47, 0x01, 0x89, 0x06, 0x6a +.byte 0xf6, 0x5f, 0xb2, 0x90, 0x6a, 0xb3, 0x02, 0xa6, 0x02, 0x88, 0xbf, 0xb3, 0x47, 0x7e, 0x2a, 0xd9 +.byte 0xd5, 0xfa, 0x68, 0x78, 0x35, 0x4d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3a, 0x00, 0x26, 0x02, 0x30 +.byte 0x38, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x14 +.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x49, 0x5a, 0x45, 0x4e, 0x50, 0x45, 0x20 +.byte 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x49 +.byte 0x7a, 0x65, 0x6e, 0x70, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc9, 0xd3, 0x7a, 0xca, 0x0f, 0x1e +.byte 0xac, 0xa7, 0x86, 0xe8, 0x16, 0x65, 0x6a, 0xb1, 0xc2, 0x1b, 0x45, 0x32, 0x71, 0x95, 0xd9, 0xfe +.byte 0x10, 0x5b, 0xcc, 0xaf, 0xe7, 0xa5, 0x79, 0x01, 0x8f, 0x89, 0xc3, 0xca, 0xf2, 0x55, 0x71, 0xf7 +.byte 0x77, 0xbe, 0x77, 0x94, 0xf3, 0x72, 0xa4, 0x2c, 0x44, 0xd8, 0x9e, 0x92, 0x9b, 0x14, 0x3a, 0xa1 +.byte 0xe7, 0x24, 0x90, 0x0a, 0x0a, 0x56, 0x8e, 0xc5, 0xd8, 0x26, 0x94, 0xe1, 0xd9, 0x48, 0xe1, 0x2d +.byte 0x3e, 0xda, 0x0a, 0x72, 0xdd, 0xa3, 0x99, 0x15, 0xda, 0x81, 0xa2, 0x87, 0xf4, 0x7b, 0x6e, 0x26 +.byte 0x77, 0x89, 0x58, 0xad, 0xd6, 0xeb, 0x0c, 0xb2, 0x41, 0x7a, 0x73, 0x6e, 0x6d, 0xdb, 0x7a, 0x78 +.byte 0x41, 0xe9, 0x08, 0x88, 0x12, 0x7e, 0x87, 0x2e, 0x66, 0x11, 0x63, 0x6c, 0x54, 0xfb, 0x3c, 0x9d +.byte 0x72, 0xc0, 0xbc, 0x2e, 0xff, 0xc2, 0xb7, 0xdd, 0x0d, 0x76, 0xe3, 0x3a, 0xd7, 0xf7, 0xb4, 0x68 +.byte 0xbe, 0xa2, 0xf5, 0xe3, 0x81, 0x6e, 0xc1, 0x46, 0x6f, 0x5d, 0x8d, 0xe0, 0x4d, 0xc6, 0x54, 0x55 +.byte 0x89, 0x1a, 0x33, 0x31, 0x0a, 0xb1, 0x57, 0xb9, 0xa3, 0x8a, 0x98, 0xc3, 0xec, 0x3b, 0x34, 0xc5 +.byte 0x95, 0x41, 0x69, 0x7e, 0x75, 0xc2, 0x3c, 0x20, 0xc5, 0x61, 0xba, 0x51, 0x47, 0xa0, 0x20, 0x90 +.byte 0x93, 0xa1, 0x90, 0x4b, 0xf3, 0x4e, 0x7c, 0x85, 0x45, 0x54, 0x9a, 0xd1, 0x05, 0x26, 0x41, 0xb0 +.byte 0xb5, 0x4d, 0x1d, 0x33, 0xbe, 0xc4, 0x03, 0xc8, 0x25, 0x7c, 0xc1, 0x70, 0xdb, 0x3b, 0xf4, 0x09 +.byte 0x2d, 0x54, 0x27, 0x48, 0xac, 0x2f, 0xe1, 0xc4, 0xac, 0x3e, 0xc8, 0xcb, 0x92, 0x4c, 0x53, 0x39 +.byte 0x37, 0x23, 0xec, 0xd3, 0x01, 0xf9, 0xe0, 0x09, 0x44, 0x4d, 0x4d, 0x64, 0xc0, 0xe1, 0x0d, 0x5a +.byte 0x87, 0x22, 0xbc, 0xad, 0x1b, 0xa3, 0xfe, 0x26, 0xb5, 0x15, 0xf3, 0xa7, 0xfc, 0x84, 0x19, 0xe9 +.byte 0xec, 0xa1, 0x88, 0xb4, 0x44, 0x69, 0x84, 0x83, 0xf3, 0x89, 0xd1, 0x74, 0x06, 0xa9, 0xcc, 0x0b +.byte 0xd6, 0xc2, 0xde, 0x27, 0x85, 0x50, 0x26, 0xca, 0x17, 0xb8, 0xc9, 0x7a, 0x87, 0x56, 0x2c, 0x1a +.byte 0x01, 0x1e, 0x6c, 0xbe, 0x13, 0xad, 0x10, 0xac, 0xb5, 0x24, 0xf5, 0x38, 0x91, 0xa1, 0xd6, 0x4b +.byte 0xda, 0xf1, 0xbb, 0xd2, 0xde, 0x47, 0xb5, 0xf1, 0xbc, 0x81, 0xf6, 0x59, 0x6b, 0xcf, 0x19, 0x53 +.byte 0xe9, 0x8d, 0x15, 0xcb, 0x4a, 0xcb, 0xa9, 0x6f, 0x44, 0xe5, 0x1b, 0x41, 0xcf, 0xe1, 0x86, 0xa7 +.byte 0xca, 0xd0, 0x6a, 0x9f, 0xbc, 0x4c, 0x8d, 0x06, 0x33, 0x5a, 0xa2, 0x85, 0xe5, 0x90, 0x35, 0xa0 +.byte 0x62, 0x5c, 0x16, 0x4e, 0xf0, 0xe3, 0xa2, 0xfa, 0x03, 0x1a, 0xb4, 0x2c, 0x71, 0xb3, 0x58, 0x2c +.byte 0xde, 0x7b, 0x0b, 0xdb, 0x1a, 0x0f, 0xeb, 0xde, 0x21, 0x1f, 0x06, 0x77, 0x06, 0x03, 0xb0, 0xc9 +.byte 0xef, 0x99, 0xfc, 0xc0, 0xb9, 0x4f, 0x0b, 0x86, 0x28, 0xfe, 0xd2, 0xb9, 0xea, 0xe3, 0xda, 0xa5 +.byte 0xc3, 0x47, 0x69, 0x12, 0xe0, 0xdb, 0xf0, 0xf6, 0x19, 0x8b, 0xed, 0x7b, 0x70, 0xd7, 0x02, 0xd6 +.byte 0xed, 0x87, 0x18, 0x28, 0x2c, 0x04, 0x24, 0x4c, 0x77, 0xe4, 0x48, 0x8a, 0x1a, 0xc6, 0x3b, 0x9a +.byte 0xd4, 0x0f, 0xca, 0xfa, 0x75, 0xd2, 0x01, 0x40, 0x5a, 0x8d, 0x79, 0xbf, 0x8b, 0xcf, 0x4b, 0xcf +.byte 0xaa, 0x16, 0xc1, 0x95, 0xe4, 0xad, 0x4c, 0x8a, 0x3e, 0x17, 0x91, 0xd4, 0xb1, 0x62, 0xe5, 0x82 +.byte 0xe5, 0x80, 0x04, 0xa4, 0x03, 0x7e, 0x8d, 0xbf, 0xda, 0x7f, 0xa2, 0x0f, 0x97, 0x4f, 0x0c, 0xd3 +.byte 0x0d, 0xfb, 0xd7, 0xd1, 0xe5, 0x72, 0x7e, 0x1c, 0xc8, 0x77, 0xff, 0x5b, 0x9a, 0x0f, 0xb7, 0xae +.byte 0x05, 0x46, 0xe5, 0xf1, 0xa8, 0x16, 0xec, 0x47, 0xa4, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b +.byte 0x00, 0x26, 0x01, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61 +.byte 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d +.byte 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb2 +.byte 0x78, 0x80, 0x71, 0xca, 0x78, 0xd5, 0xe3, 0x71, 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8 +.byte 0xd7, 0x88, 0x76, 0xf4, 0x99, 0x68, 0xf7, 0x58, 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac +.byte 0x02, 0x2d, 0x86, 0xd3, 0xa0, 0x43, 0x7a, 0x4e, 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d +.byte 0xdb, 0x48, 0xc8, 0x07, 0x17, 0x36, 0x4c, 0xf4, 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5 +.byte 0xb5, 0x19, 0xf8, 0x49, 0x68, 0xb0, 0xde, 0xd7, 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe +.byte 0x82, 0x36, 0xa5, 0xe5, 0x4a, 0x56, 0xe4, 0x45, 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda +.byte 0x9c, 0x9b, 0x35, 0x39, 0x2f, 0xfa, 0xb0, 0x20, 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6 +.byte 0xf9, 0xaf, 0xec, 0x47, 0x19, 0x8f, 0x50, 0x38, 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba +.byte 0xd5, 0xa9, 0xf9, 0x48, 0x67, 0x30, 0x96, 0xee, 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0 +.byte 0x30, 0x86, 0x66, 0xa1, 0x45, 0x66, 0xba, 0x54, 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff +.byte 0xd1, 0xe8, 0x30, 0x2d, 0x7d, 0x2d, 0x74, 0x70, 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59 +.byte 0x6e, 0xbb, 0x73, 0x87, 0x17, 0xf2, 0x32, 0x46, 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca +.byte 0xb4, 0xf2, 0x9f, 0x24, 0x0e, 0x2d, 0x4b, 0xf7, 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02 +.byte 0xcb, 0x38, 0x8a, 0xae, 0x50, 0x38, 0x6f, 0xdb, 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54 +.byte 0xe1, 0x77, 0xe0, 0x67, 0xc8, 0x0f, 0x9c, 0x87, 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80 +.byte 0xc4, 0x80, 0x4c, 0x3e, 0x3b, 0x24, 0x26, 0x8e, 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x26, 0x02, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xad, 0x96, 0x9f, 0x2d, 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99 +.byte 0xec, 0x8a, 0xcb, 0x6b, 0x60, 0x51, 0x13, 0xbc, 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd +.byte 0x19, 0x10, 0x6a, 0xc7, 0x26, 0x0c, 0x35, 0xd8, 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b +.byte 0x85, 0x03, 0xc3, 0x5b, 0xdb, 0x4a, 0xe8, 0xc8, 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c +.byte 0xe8, 0x06, 0x36, 0x4d, 0xcc, 0x9a, 0xac, 0x3d, 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60 +.byte 0xac, 0x37, 0x44, 0x79, 0x85, 0x81, 0x82, 0xad, 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c +.byte 0x52, 0x76, 0xea, 0x43, 0x9d, 0xb7, 0x04, 0xd1, 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49 +.byte 0x85, 0xe9, 0x37, 0xe9, 0xca, 0x7e, 0xae, 0x5c, 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a +.byte 0x6d, 0x88, 0x95, 0xd9, 0x34, 0xb8, 0x52, 0x1a, 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6 +.byte 0x78, 0xb7, 0xea, 0xd0, 0xe4, 0x3a, 0x3c, 0x12, 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35 +.byte 0x05, 0xa9, 0x12, 0x34, 0xe3, 0xf3, 0x64, 0x74, 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe +.byte 0x32, 0x44, 0xbb, 0x87, 0xdd, 0x65, 0x27, 0x02, 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd +.byte 0xf7, 0x21, 0x55, 0x90, 0x4f, 0x0f, 0xec, 0xae, 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb +.byte 0xf0, 0x5f, 0x87, 0xed, 0x3c, 0x2c, 0x39, 0x86, 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79 +.byte 0xa3, 0xad, 0xdb, 0xdd, 0x7c, 0xb0, 0xba, 0x1c, 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f +.byte 0xf8, 0x78, 0x1f, 0x6a, 0x36, 0x51, 0x46, 0x27, 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55 +.byte 0x7d, 0x7c, 0x25, 0x8a, 0x6f, 0x2f, 0xb4, 0xc5, 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10 +.byte 0x6c, 0xfb, 0x5f, 0x1b, 0xbc, 0x1b, 0x7e, 0xc5, 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b +.byte 0x57, 0xf4, 0x9a, 0xb2, 0xb9, 0x57, 0xe9, 0xab, 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce +.byte 0x86, 0xa7, 0xe0, 0x6e, 0xe9, 0xb4, 0x69, 0xa1, 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97 +.byte 0x13, 0x9e, 0xa5, 0x87, 0xb0, 0x57, 0x10, 0x81, 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92 +.byte 0xd1, 0x9c, 0xd0, 0x18, 0xf4, 0x92, 0x6e, 0xda, 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb +.byte 0x5e, 0xef, 0x21, 0x64, 0x7a, 0x20, 0x5f, 0x6c, 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c +.byte 0x0b, 0x2a, 0x16, 0xdc, 0x01, 0x2e, 0x32, 0xda, 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40 +.byte 0x94, 0xef, 0x9e, 0x91, 0x08, 0x86, 0xfa, 0xbe, 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43 +.byte 0x95, 0xf9, 0x6c, 0x69, 0x52, 0x36, 0xc7, 0x29, 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f +.byte 0xbd, 0x47, 0xeb, 0xe7, 0x49, 0x47, 0x95, 0x0b, 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61 +.byte 0x1e, 0xf1, 0xbf, 0x2e, 0x8a, 0x72, 0x6e, 0x80, 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3 +.byte 0x4e, 0x5f, 0xec, 0xed, 0x28, 0x62, 0xd9, 0x4d, 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd +.byte 0xeb, 0xdc, 0xdb, 0xa7, 0xca, 0xc5, 0x7e, 0x02, 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d +.byte 0x09, 0x2c, 0x17, 0x54, 0x4a, 0x98, 0xd1, 0x54, 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e +.byte 0x6f, 0x3f, 0xd2, 0x2d, 0x81, 0x59, 0x29, 0x66, 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27 +.byte 0xfe, 0xdd, 0xeb, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x5b, 0x00, 0x30, 0x39, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86 +.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03 +.byte 0x42, 0x00, 0x04, 0x29, 0x97, 0xa7, 0xc6, 0x41, 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56 +.byte 0xc6, 0xf2, 0x52, 0xa5, 0xba, 0x2d, 0xb2, 0x12, 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8 +.byte 0xaa, 0x6d, 0x1f, 0x73, 0x81, 0x3b, 0x3b, 0x98, 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86 +.byte 0x8e, 0x80, 0x17, 0x68, 0x62, 0x45, 0x57, 0x7d, 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08 +.byte 0xeb, 0x66, 0xde, 0x3b, 0x00, 0x78, 0x00, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3 +.byte 0x53, 0x0d, 0xfe, 0xc1, 0x8a, 0x7b, 0x4b, 0xa8, 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d +.byte 0x1b, 0xdb, 0x08, 0x71, 0x21, 0xd2, 0x00, 0xe8, 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e +.byte 0x5d, 0xea, 0x3d, 0xa5, 0xc9, 0x81, 0xaa, 0xa3, 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd +.byte 0xe8, 0x10, 0x6d, 0xe3, 0x9c, 0xe0, 0xe3, 0xbd, 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0 +.byte 0xcb, 0x24, 0x2f, 0x70, 0xba, 0x88, 0xa1, 0x2a, 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4 +.byte 0x81, 0xdb, 0x39, 0x6e, 0x29, 0xb0, 0x1e, 0xfa, 0x2e, 0x5c, 0x3d, 0x00, 0x26, 0x02, 0x30, 0x3b +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30 +.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d +.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x10, 0x41, 0x43, 0x20, 0x52, 0x41 +.byte 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xba, 0x71, 0x80, 0x7a +.byte 0x4c, 0x86, 0x6e, 0x7f, 0xc8, 0x13, 0x6d, 0xc0, 0xc6, 0x7d, 0x1c, 0x00, 0x97, 0x8f, 0x2c, 0x0c +.byte 0x23, 0xbb, 0x10, 0x9a, 0x40, 0xa9, 0x1a, 0xb7, 0x87, 0x88, 0xf8, 0x9b, 0x56, 0x6a, 0xfb, 0xe6 +.byte 0x7b, 0x8e, 0x8b, 0x92, 0x8e, 0xa7, 0x25, 0x5d, 0x59, 0x11, 0xdb, 0x36, 0x2e, 0xb7, 0x51, 0x17 +.byte 0x1f, 0xa9, 0x08, 0x1f, 0x04, 0x17, 0x24, 0x58, 0xaa, 0x37, 0x4a, 0x18, 0xdf, 0xe5, 0x39, 0xd4 +.byte 0x57, 0xfd, 0xd7, 0xc1, 0x2c, 0x91, 0x01, 0x91, 0xe2, 0x22, 0xd4, 0x03, 0xc0, 0x58, 0xfc, 0x77 +.byte 0x47, 0xec, 0x8f, 0x3e, 0x74, 0x43, 0xba, 0xac, 0x34, 0x8d, 0x4d, 0x38, 0x76, 0x67, 0x8e, 0xb0 +.byte 0xc8, 0x6f, 0x30, 0x33, 0x58, 0x71, 0x5c, 0xb4, 0xf5, 0x6b, 0x6e, 0xd4, 0x01, 0x50, 0xb8, 0x13 +.byte 0x7e, 0x6c, 0x4a, 0xa3, 0x49, 0xd1, 0x20, 0x19, 0xee, 0xbc, 0xc0, 0x29, 0x18, 0x65, 0xa7, 0xde +.byte 0xfe, 0xef, 0xdd, 0x0a, 0x90, 0x21, 0xe7, 0x1a, 0x67, 0x92, 0x42, 0x10, 0x98, 0x5f, 0x4f, 0x30 +.byte 0xbc, 0x3e, 0x1c, 0x45, 0xb4, 0x10, 0xd7, 0x68, 0x40, 0x14, 0xc0, 0x40, 0xfa, 0xe7, 0x77, 0x17 +.byte 0x7a, 0xe6, 0x0b, 0x8f, 0x65, 0x5b, 0x3c, 0xd9, 0x9a, 0x52, 0xdb, 0xb5, 0xbd, 0x9e, 0x46, 0xcf +.byte 0x3d, 0xeb, 0x91, 0x05, 0x02, 0xc0, 0x96, 0xb2, 0x76, 0x4c, 0x4d, 0x10, 0x96, 0x3b, 0x92, 0xfa +.byte 0x9c, 0x7f, 0x0f, 0x99, 0xdf, 0xbe, 0x23, 0x35, 0x45, 0x1e, 0x02, 0x5c, 0xfe, 0xb5, 0xa8, 0x9b +.byte 0x99, 0x25, 0xda, 0x5e, 0xf3, 0x22, 0xc3, 0x39, 0xf5, 0xe4, 0x2a, 0x2e, 0xd3, 0xc6, 0x1f, 0xc4 +.byte 0x6c, 0xaa, 0xc5, 0x1c, 0x6a, 0x01, 0x05, 0x4a, 0x2f, 0xd2, 0xc5, 0xc1, 0xa8, 0x34, 0x26, 0x5d +.byte 0x66, 0xa5, 0xd2, 0x02, 0x21, 0xf9, 0x18, 0xb7, 0x06, 0xf5, 0x4e, 0x99, 0x6f, 0xa8, 0xab, 0x4c +.byte 0x51, 0xe8, 0xcf, 0x50, 0x18, 0xc5, 0x77, 0xc8, 0x39, 0x09, 0x2c, 0x49, 0x92, 0x32, 0x99, 0xa8 +.byte 0xbb, 0x17, 0x17, 0x79, 0xb0, 0x5a, 0xc5, 0xe6, 0xa3, 0xc4, 0x59, 0x65, 0x47, 0x35, 0x83, 0x5e +.byte 0xa9, 0xe8, 0x35, 0x0b, 0x99, 0xbb, 0xe4, 0xcd, 0x20, 0xc6, 0x9b, 0x4a, 0x06, 0x39, 0xb5, 0x68 +.byte 0xfc, 0x22, 0xba, 0xee, 0x55, 0x8c, 0x2b, 0x4e, 0xea, 0xf3, 0xb1, 0xe3, 0xfc, 0xb6, 0x99, 0x9a +.byte 0xd5, 0x42, 0xfa, 0x71, 0x4d, 0x08, 0xcf, 0x87, 0x1e, 0x6a, 0x71, 0x7d, 0xf9, 0xd3, 0xb4, 0xe9 +.byte 0xa5, 0x71, 0x81, 0x7b, 0xc2, 0x4e, 0x47, 0x96, 0xa5, 0xf6, 0x76, 0x85, 0xa3, 0x28, 0x8f, 0xe9 +.byte 0x80, 0x6e, 0x81, 0x53, 0xa5, 0x6d, 0x5f, 0xb8, 0x48, 0xf9, 0xc2, 0xf9, 0x36, 0xa6, 0x2e, 0x49 +.byte 0xff, 0xb8, 0x96, 0xc2, 0x8c, 0x07, 0xb3, 0x9b, 0x88, 0x58, 0xfc, 0xeb, 0x1b, 0x1c, 0xde, 0x2d +.byte 0x70, 0xe2, 0x97, 0x92, 0x30, 0xa1, 0x89, 0xe3, 0xbc, 0x55, 0xa8, 0x27, 0xd6, 0x4b, 0xed, 0x90 +.byte 0xad, 0x8b, 0xfa, 0x63, 0x25, 0x59, 0x2d, 0xa8, 0x35, 0xdd, 0xca, 0x97, 0x33, 0xbc, 0xe5, 0xcd +.byte 0xc7, 0x9d, 0xd1, 0xec, 0xef, 0x5e, 0x0e, 0x4a, 0x90, 0x06, 0x26, 0x63, 0xad, 0xb9, 0xd9, 0x35 +.byte 0x2d, 0x07, 0xba, 0x76, 0x65, 0x2c, 0xac, 0x57, 0x8f, 0x7d, 0xf4, 0x07, 0x94, 0xd7, 0x81, 0x02 +.byte 0x96, 0x5d, 0xa3, 0x07, 0x49, 0xd5, 0x7a, 0xd0, 0x57, 0xf9, 0x1b, 0xe7, 0x53, 0x46, 0x75, 0xaa +.byte 0xb0, 0x79, 0x42, 0xcb, 0x68, 0x71, 0x08, 0xe9, 0x60, 0xbd, 0x39, 0x69, 0xce, 0xf4, 0xaf, 0xc3 +.byte 0x56, 0x40, 0xc7, 0xad, 0x52, 0xa2, 0x09, 0xe4, 0x6f, 0x86, 0x47, 0x8a, 0x1f, 0xeb, 0x28, 0x27 +.byte 0x5d, 0x83, 0x20, 0xaf, 0x04, 0xc9, 0x6c, 0x56, 0x9a, 0x8b, 0x46, 0xf5, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x3d, 0x00, 0x26, 0x01, 0x30, 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x52, 0x4f, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x63 +.byte 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x10, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xb7, 0x33, 0xb9, 0x7e, 0xc8, 0x25, 0x4a, 0x8e, 0xb5, 0xdb, 0xb4, 0x28, 0x1b +.byte 0xaa, 0x57, 0x90, 0xe8, 0xd1, 0x22, 0xd3, 0x64, 0xba, 0xd3, 0x93, 0xe8, 0xd4, 0xac, 0x86, 0x61 +.byte 0x40, 0x6a, 0x60, 0x57, 0x68, 0x54, 0x84, 0x4d, 0xbc, 0x6a, 0x54, 0x02, 0x05, 0xff, 0xdf, 0x9b +.byte 0x9a, 0x2a, 0xae, 0x5d, 0x07, 0x8f, 0x4a, 0xc3, 0x28, 0x7f, 0xef, 0xfb, 0x2b, 0xfa, 0x79, 0xf1 +.byte 0xc7, 0xad, 0xf0, 0x10, 0x53, 0x24, 0x90, 0x8b, 0x66, 0xc9, 0xa8, 0x88, 0xab, 0xaf, 0x5a, 0xa3 +.byte 0x00, 0xe9, 0xbe, 0xba, 0x46, 0xee, 0x5b, 0x73, 0x7b, 0x2c, 0x17, 0x82, 0x81, 0x5e, 0x62, 0x2c +.byte 0xa1, 0x02, 0x65, 0xb3, 0xbd, 0xc5, 0x2b, 0x00, 0x7e, 0xc4, 0xfc, 0x03, 0x33, 0x57, 0x0d, 0xed +.byte 0xe2, 0xfa, 0xce, 0x5d, 0x45, 0xd6, 0x38, 0xcd, 0x35, 0xb6, 0xb2, 0xc1, 0xd0, 0x9c, 0x81, 0x4a +.byte 0xaa, 0xe4, 0xb2, 0x01, 0x5c, 0x1d, 0x8f, 0x5f, 0x99, 0xc4, 0xb1, 0xad, 0xdb, 0x88, 0x21, 0xeb +.byte 0x90, 0x08, 0x82, 0x80, 0xf3, 0x30, 0xa3, 0x43, 0xe6, 0x90, 0x82, 0xae, 0x55, 0x28, 0x49, 0xed +.byte 0x5b, 0xd7, 0xa9, 0x10, 0x38, 0x0e, 0xfe, 0x8f, 0x4c, 0x5b, 0x9b, 0x46, 0xea, 0x41, 0xf5, 0xb0 +.byte 0x08, 0x74, 0xc3, 0xd0, 0x88, 0x33, 0xb6, 0x7c, 0xd7, 0x74, 0xdf, 0xdc, 0x84, 0xd1, 0x43, 0x0e +.byte 0x75, 0x39, 0xa1, 0x25, 0x40, 0x28, 0xea, 0x78, 0xcb, 0x0e, 0x2c, 0x2e, 0x39, 0x9d, 0x8c, 0x8b +.byte 0x6e, 0x16, 0x1c, 0x2f, 0x26, 0x82, 0x10, 0xe2, 0xe3, 0x65, 0x94, 0x0a, 0x04, 0xc0, 0x5e, 0xf7 +.byte 0x5d, 0x5b, 0xf8, 0x10, 0xe2, 0xd0, 0xba, 0x7a, 0x4b, 0xfb, 0xde, 0x37, 0x00, 0x00, 0x1a, 0x5b +.byte 0x28, 0xe3, 0xd2, 0x9c, 0x73, 0x3e, 0x32, 0x87, 0x98, 0xa1, 0xc9, 0x51, 0x2f, 0xd7, 0xde, 0xac +.byte 0x33, 0xb3, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3e, 0x00, 0x26, 0x01, 0x30, 0x3c, 0x31, 0x1e +.byte 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x15, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x32, 0x30, 0x31, 0x31, 0x31, 0x0d +.byte 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 +.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x95, 0x85, 0x3b, 0x97, 0x6f +.byte 0x2a, 0x3b, 0x2e, 0x3b, 0xcf, 0xa6, 0xf3, 0x29, 0x35, 0xbe, 0xcf, 0x18, 0xac, 0x3e, 0xaa, 0xd9 +.byte 0xf8, 0x4d, 0xa0, 0x3e, 0x1a, 0x47, 0xb9, 0xbc, 0x9a, 0xdf, 0xf2, 0xfe, 0xcc, 0x3e, 0x47, 0xe8 +.byte 0x7a, 0x96, 0xc2, 0x24, 0x8e, 0x35, 0xf4, 0xa9, 0x0c, 0xfc, 0x82, 0xfd, 0x6d, 0xc1, 0x72, 0x62 +.byte 0x27, 0xbd, 0xea, 0x6b, 0xeb, 0xe7, 0x8a, 0xcc, 0x54, 0x3e, 0x90, 0x50, 0xcf, 0x80, 0xd4, 0x95 +.byte 0xfb, 0xe8, 0xb5, 0x82, 0xd4, 0x14, 0xc5, 0xb6, 0xa9, 0x55, 0x25, 0x57, 0xdb, 0xb1, 0x50, 0xf6 +.byte 0xb0, 0x60, 0x64, 0x59, 0x7a, 0x69, 0xcf, 0x03, 0xb7, 0x6f, 0x0d, 0xbe, 0xca, 0x3e, 0x6f, 0x74 +.byte 0x72, 0xea, 0xaa, 0x30, 0x2a, 0x73, 0x62, 0xbe, 0x49, 0x91, 0x61, 0xc8, 0x11, 0xfe, 0x0e, 0x03 +.byte 0x2a, 0xf7, 0x6a, 0x20, 0xdc, 0x02, 0x15, 0x0d, 0x5e, 0x15, 0x6a, 0xfc, 0xe3, 0x82, 0xc1, 0xb5 +.byte 0xc5, 0x9d, 0x64, 0x09, 0x6c, 0xa3, 0x59, 0x98, 0x07, 0x27, 0xc7, 0x1b, 0x96, 0x2b, 0x61, 0x74 +.byte 0x71, 0x6c, 0x43, 0xf1, 0xf7, 0x35, 0x89, 0x10, 0xe0, 0x9e, 0xec, 0x55, 0xa1, 0x37, 0x22, 0xa2 +.byte 0x87, 0x04, 0x05, 0x2c, 0x47, 0x7d, 0xb4, 0x1c, 0xb9, 0x62, 0x29, 0x66, 0x28, 0xca, 0xb7, 0xe1 +.byte 0x93, 0xf5, 0xa4, 0x94, 0x03, 0x99, 0xb9, 0x70, 0x85, 0xb5, 0xe6, 0x48, 0xea, 0x8d, 0x50, 0xfc +.byte 0xd9, 0xde, 0xcc, 0x6f, 0x07, 0x0e, 0xdd, 0x0b, 0x72, 0x9d, 0x80, 0x30, 0x16, 0x07, 0x95, 0x3f +.byte 0x28, 0x0e, 0xfd, 0xc5, 0x75, 0x4f, 0x53, 0xd6, 0x74, 0x9a, 0xb4, 0x24, 0x2e, 0x8e, 0x02, 0x91 +.byte 0xcf, 0x76, 0xc5, 0x9b, 0x1e, 0x55, 0x74, 0x9c, 0x78, 0x21, 0xb1, 0xf0, 0x2d, 0xf1, 0x0b, 0x9f +.byte 0xc2, 0xd5, 0x96, 0x18, 0x1f, 0xf0, 0x54, 0x22, 0x7a, 0x8c, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x3f, 0x00, 0x26, 0x02, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e +.byte 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x12, 0x55, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x47, 0x32, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xc5, 0xe6, 0x2b, 0x6f, 0x7c, 0xef, 0x26, 0x05, 0x27, 0xa3, 0x81, 0x24 +.byte 0xda, 0x6f, 0xcb, 0x01, 0xf9, 0x99, 0x9a, 0xa9, 0x32, 0xc2, 0x22, 0x87, 0x61, 0x41, 0x91, 0x3b +.byte 0xcb, 0xc3, 0x68, 0x1b, 0x06, 0xc5, 0x4c, 0xa9, 0x2b, 0xc1, 0x67, 0x17, 0x22, 0x1d, 0x2b, 0xed +.byte 0xf9, 0x29, 0x89, 0x93, 0xa2, 0x78, 0xbd, 0x92, 0x6b, 0xa0, 0xa3, 0x0d, 0xa2, 0x7e, 0xca, 0x93 +.byte 0xb3, 0xa6, 0xd1, 0x8c, 0x35, 0xd5, 0x75, 0xf9, 0x17, 0xf6, 0xcf, 0x45, 0xc5, 0xe5, 0x7a, 0xec +.byte 0x77, 0x93, 0xa0, 0x8f, 0x23, 0xae, 0x0e, 0x1a, 0x03, 0x7f, 0xbe, 0xd4, 0xd0, 0xed, 0x2e, 0x7b +.byte 0xab, 0x46, 0x23, 0x5b, 0xff, 0x2c, 0xe6, 0x54, 0x7a, 0x94, 0xc0, 0x2a, 0x15, 0xf0, 0xc9, 0x8d +.byte 0xb0, 0x7a, 0x3b, 0x24, 0xe1, 0xd7, 0x68, 0xe2, 0x31, 0x3c, 0x06, 0x33, 0x46, 0xb6, 0x54, 0x11 +.byte 0xa6, 0xa5, 0x2f, 0x22, 0x54, 0x2a, 0x58, 0x0d, 0x01, 0x02, 0xf1, 0xfa, 0x15, 0x51, 0x67, 0x6c +.byte 0xc0, 0xfa, 0xd7, 0xb6, 0x1b, 0x7f, 0xd1, 0x56, 0x88, 0x2f, 0x1a, 0x3a, 0x8d, 0x3b, 0xbb, 0x82 +.byte 0x11, 0xe0, 0x47, 0x00, 0xd0, 0x52, 0x87, 0xab, 0xfb, 0x86, 0x7e, 0x0f, 0x24, 0x6b, 0x40, 0x9d +.byte 0x34, 0x67, 0xbc, 0x8d, 0xc7, 0x2d, 0x86, 0x6f, 0x79, 0x3e, 0x8e, 0xa9, 0x3c, 0x17, 0x4b, 0x7f +.byte 0xb0, 0x99, 0xe3, 0xb0, 0x71, 0x60, 0xdc, 0x0b, 0xf5, 0x64, 0xc3, 0xce, 0x43, 0xbc, 0x6d, 0x71 +.byte 0xb9, 0xd2, 0xde, 0x27, 0x5b, 0x8a, 0xe8, 0xd8, 0xc6, 0xae, 0xe1, 0x59, 0x7d, 0xcf, 0x28, 0x2d +.byte 0x35, 0xb8, 0x95, 0x56, 0x1a, 0xf1, 0xb2, 0x58, 0x4b, 0xb7, 0x12, 0x37, 0xc8, 0x7c, 0xb3, 0xed +.byte 0x4b, 0x80, 0xe1, 0x8d, 0xfa, 0x32, 0x23, 0xb6, 0x6f, 0xb7, 0x48, 0x95, 0x08, 0xb1, 0x44, 0x4e +.byte 0x85, 0x8c, 0x3a, 0x02, 0x54, 0x20, 0x2f, 0xdf, 0xbf, 0x57, 0x4f, 0x3b, 0x3a, 0x90, 0x21, 0xd7 +.byte 0xc1, 0x26, 0x35, 0x54, 0x20, 0xec, 0xc7, 0x3f, 0x47, 0xec, 0xef, 0x5a, 0xbf, 0x4b, 0x7a, 0xc1 +.byte 0xad, 0x3b, 0x17, 0x50, 0x5c, 0x62, 0xd8, 0x0f, 0x4b, 0x4a, 0xdc, 0x2b, 0xfa, 0x6e, 0xbc, 0x73 +.byte 0x92, 0xcd, 0xec, 0xc7, 0x50, 0xe8, 0x41, 0x96, 0xd7, 0xa9, 0x7e, 0x6d, 0xd8, 0xe9, 0x1d, 0x8f +.byte 0x8a, 0xb5, 0xb9, 0x58, 0x92, 0xba, 0x4a, 0x92, 0x2b, 0x0c, 0x56, 0xfd, 0x80, 0xeb, 0x08, 0xf0 +.byte 0x5e, 0x29, 0x6e, 0x1b, 0x1c, 0x0c, 0xaf, 0x8f, 0x93, 0x89, 0xad, 0xdb, 0xbd, 0xa3, 0x9e, 0x21 +.byte 0xca, 0x89, 0x19, 0xec, 0xdf, 0xb5, 0xc3, 0x1a, 0xeb, 0x16, 0xfe, 0x78, 0x36, 0x4c, 0xd6, 0x6e +.byte 0xd0, 0x3e, 0x17, 0x1c, 0x90, 0x17, 0x6b, 0x26, 0xba, 0xfb, 0x7a, 0x2f, 0xbf, 0x11, 0x1c, 0x18 +.byte 0x0e, 0x2d, 0x73, 0x03, 0x8f, 0xa0, 0xe5, 0x35, 0xa0, 0x5a, 0xe2, 0x4c, 0x75, 0x1d, 0x71, 0xe1 +.byte 0x39, 0x38, 0x53, 0x78, 0x40, 0xcc, 0x83, 0x93, 0xd7, 0x0a, 0x9e, 0x9d, 0x5b, 0x8f, 0x8a, 0xe4 +.byte 0xe5, 0xe0, 0x48, 0xe4, 0x48, 0xb2, 0x47, 0xcd, 0x4e, 0x2a, 0x75, 0x2a, 0x7b, 0xf2, 0x22, 0xf6 +.byte 0xc9, 0xbe, 0x09, 0x91, 0x96, 0x57, 0x7a, 0x88, 0x88, 0xac, 0xee, 0x70, 0xac, 0xf9, 0xdc, 0x29 +.byte 0xe3, 0x0c, 0x1c, 0x3b, 0x12, 0x4e, 0x44, 0xd6, 0xa7, 0x4e, 0xb0, 0x26, 0xc8, 0xf3, 0xd9, 0x1a +.byte 0x97, 0x91, 0x68, 0xea, 0xef, 0x8d, 0x46, 0x06, 0xd2, 0x56, 0x45, 0x58, 0x9a, 0x3c, 0x0c, 0x0f +.byte 0x83, 0xb8, 0x05, 0x25, 0xc3, 0x39, 0xcf, 0x3b, 0xa4, 0x34, 0x89, 0xb7, 0x79, 0x12, 0x2f, 0x47 +.byte 0xc5, 0xe7, 0xa9, 0x97, 0x69, 0xfc, 0xa6, 0x77, 0x67, 0xb5, 0xdf, 0x7b, 0xf1, 0x7a, 0x65, 0x15 +.byte 0xe4, 0x61, 0x56, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3f, 0x00, 0x78, 0x00, 0x30, 0x3d, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79 +.byte 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61 +.byte 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x31, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0xde, 0x6f, 0xf8, 0x7f, 0x1c, 0xdf, 0xed, 0xf9, 0x47, 0x87, 0x86, 0xb1 +.byte 0xa4, 0xc0, 0x8a, 0xf8, 0x82, 0x97, 0x80, 0xea, 0x8f, 0xc8, 0x4a, 0x5e, 0x2a, 0x7d, 0x88, 0x68 +.byte 0xa7, 0x01, 0x62, 0x14, 0x91, 0x24, 0x7a, 0x5c, 0x9e, 0xa3, 0x17, 0x7d, 0x8a, 0x86, 0x21, 0x34 +.byte 0x18, 0x50, 0x1b, 0x10, 0xde, 0xd0, 0x37, 0x4b, 0x26, 0xc7, 0x19, 0x60, 0x80, 0xe9, 0x34, 0xbd +.byte 0x60, 0x19, 0x36, 0x40, 0xd6, 0x29, 0x87, 0x09, 0x3c, 0x91, 0x7a, 0xf6, 0xbc, 0x13, 0x23, 0xdd +.byte 0x59, 0x4e, 0x04, 0x5e, 0xcf, 0xc8, 0x02, 0x1c, 0x18, 0x53, 0xc1, 0x31, 0xd8, 0xda, 0x20, 0xe9 +.byte 0x44, 0x8d, 0xe4, 0x76, 0x3f, 0x00, 0x26, 0x02, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd0, 0x36, 0xd4, 0x1f, 0xea, 0xdd, 0xab, 0xe4 +.byte 0xd1, 0xb6, 0xe6, 0xfb, 0x22, 0xc0, 0xdd, 0x13, 0x0d, 0x6a, 0x7b, 0x22, 0x13, 0x1c, 0x97, 0x3c +.byte 0x68, 0x63, 0x66, 0x32, 0x9c, 0x03, 0xb5, 0x8d, 0xa4, 0x81, 0x83, 0xda, 0x78, 0x30, 0x11, 0xcf +.byte 0xdc, 0xb2, 0x2b, 0xbe, 0x92, 0xbf, 0x8e, 0xe4, 0xc4, 0x13, 0xbe, 0xa4, 0x68, 0x4c, 0xda, 0x02 +.byte 0x68, 0x16, 0x74, 0xbe, 0xb2, 0xdd, 0x04, 0xe4, 0x6b, 0x2a, 0xdd, 0x37, 0x1f, 0x60, 0x2c, 0xdb +.byte 0xf5, 0xf7, 0xa1, 0x7c, 0x95, 0xb7, 0x0c, 0x70, 0x86, 0x2e, 0xf1, 0x3a, 0xef, 0x52, 0xf7, 0xcc +.byte 0xd3, 0x9b, 0xf9, 0x8b, 0xbe, 0x0e, 0xdf, 0x31, 0xb7, 0x9d, 0x68, 0x5c, 0x92, 0xa6, 0xf5, 0xe5 +.byte 0xf3, 0x0a, 0x34, 0xb5, 0xff, 0x7b, 0xa2, 0xe4, 0x87, 0xa1, 0xc6, 0xaf, 0x17, 0x00, 0xef, 0x03 +.byte 0x91, 0xed, 0xa9, 0x1c, 0x4e, 0x71, 0x3d, 0xd2, 0x8b, 0x6c, 0x89, 0xf4, 0x78, 0x86, 0xe6, 0x6a +.byte 0x49, 0xa0, 0xce, 0xb5, 0xd2, 0xb0, 0xab, 0x9b, 0xf6, 0xf4, 0xd4, 0x2e, 0xe3, 0x72, 0xf9, 0x36 +.byte 0xc6, 0xeb, 0x15, 0xb7, 0x25, 0x8c, 0x3a, 0xfc, 0x25, 0x0d, 0xb3, 0x22, 0x73, 0x21, 0x74, 0xc8 +.byte 0x4a, 0x96, 0x61, 0x92, 0xf5, 0x2f, 0x0b, 0x18, 0xa5, 0xf4, 0xad, 0xe2, 0xee, 0x41, 0xbd, 0x01 +.byte 0x79, 0xfa, 0x96, 0x8c, 0x8d, 0x17, 0x02, 0x30, 0xb4, 0xf9, 0xaf, 0x78, 0x1a, 0x8c, 0xb4, 0x36 +.byte 0x10, 0x10, 0x07, 0x05, 0x70, 0xd0, 0xf4, 0x31, 0x90, 0x8a, 0x51, 0xc5, 0x86, 0x26, 0x79, 0xb2 +.byte 0x11, 0x88, 0x5e, 0xc5, 0xf0, 0x0a, 0x54, 0xcd, 0x49, 0xa6, 0xbf, 0x02, 0x9c, 0xd2, 0x44, 0xa7 +.byte 0xed, 0xe3, 0x78, 0xef, 0x46, 0x5e, 0x6d, 0x71, 0xd1, 0x79, 0x70, 0x1c, 0x46, 0x5f, 0x51, 0xe9 +.byte 0xc9, 0x37, 0xdc, 0x5f, 0x7e, 0x69, 0x7b, 0x41, 0xdf, 0x34, 0x45, 0xe0, 0x3b, 0x84, 0xf4, 0xa1 +.byte 0x8a, 0x0a, 0x36, 0x9e, 0x37, 0xcc, 0x62, 0x52, 0xe1, 0x89, 0x0d, 0x28, 0xf9, 0x7a, 0x23, 0xb1 +.byte 0x0d, 0x3d, 0x3d, 0x9a, 0xfd, 0x9d, 0x81, 0xef, 0x2c, 0x90, 0xc0, 0x7b, 0x44, 0x4e, 0xbb, 0x49 +.byte 0xe0, 0x0e, 0x4a, 0x56, 0x92, 0xbc, 0xcb, 0xb5, 0xdd, 0x79, 0x17, 0x89, 0x91, 0xde, 0x61, 0x89 +.byte 0x74, 0x92, 0xa8, 0xe3, 0x32, 0x85, 0xbe, 0x4e, 0x85, 0xa4, 0x4b, 0x59, 0xcb, 0x2b, 0xc5, 0x78 +.byte 0x8e, 0x71, 0x54, 0xd0, 0x02, 0x37, 0x99, 0x8c, 0xe5, 0x49, 0xea, 0xe0, 0x54, 0x72, 0xa4, 0x11 +.byte 0x06, 0x2f, 0x0b, 0x8c, 0xc1, 0x5b, 0xbe, 0xb5, 0xa1, 0xb0, 0x53, 0x6e, 0x9c, 0xb8, 0x60, 0x91 +.byte 0x1f, 0x59, 0x6b, 0xf9, 0x2d, 0xf4, 0x94, 0x0a, 0x97, 0xb5, 0xec, 0xc5, 0x76, 0x03, 0x54, 0x1b +.byte 0x65, 0x52, 0xba, 0x4c, 0x92, 0x56, 0x51, 0x35, 0xa0, 0x40, 0xd8, 0x29, 0xdb, 0xae, 0x52, 0x76 +.byte 0x3b, 0x2d, 0x30, 0x40, 0x9b, 0x8a, 0xd0, 0x42, 0x56, 0xb4, 0xb7, 0x88, 0x01, 0xa4, 0x87, 0x3b +.byte 0x53, 0x96, 0xcd, 0xa3, 0x16, 0x8f, 0xf3, 0x66, 0xaa, 0x17, 0xb1, 0xc7, 0x60, 0xe0, 0xc1, 0x43 +.byte 0x05, 0x0c, 0xee, 0x9b, 0x5b, 0x60, 0x6f, 0x06, 0x5c, 0x87, 0x5b, 0x27, 0xf9, 0x40, 0x11, 0x9e +.byte 0x9c, 0x33, 0xc1, 0xb7, 0xe5, 0x35, 0x57, 0x05, 0x7f, 0x27, 0xce, 0x17, 0x20, 0x8c, 0x1c, 0xfc +.byte 0xf1, 0xfb, 0xda, 0x31, 0x29, 0x49, 0xed, 0xf5, 0x0b, 0x84, 0xa7, 0x4f, 0xc1, 0xf6, 0x4e, 0xc2 +.byte 0x28, 0x9c, 0xfa, 0xee, 0xe0, 0xaf, 0x07, 0xfb, 0x33, 0x11, 0x7a, 0x21, 0x4f, 0x0b, 0x21, 0x10 +.byte 0xb6, 0x40, 0x3a, 0xab, 0x22, 0x3a, 0x04, 0x9c, 0x8b, 0x9b, 0x84, 0x86, 0x72, 0x9a, 0xd2, 0xa7 +.byte 0xa5, 0xc4, 0xb4, 0x75, 0x91, 0xa9, 0x2b, 0x23, 0x02, 0x03, 0x01, 0x00, 0x01, 0x43, 0x00, 0x26 +.byte 0x02, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x52, 0x4f +.byte 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x43, 0x45, 0x52, 0x54, 0x53 +.byte 0x49, 0x47, 0x4e, 0x20, 0x53, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x13, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43 +.byte 0x41, 0x20, 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xc0, 0xc5, 0x75, 0x19, 0x91, 0x7d, 0x44, 0x74, 0x74, 0x87, 0xfe +.byte 0x0e, 0x3b, 0x96, 0xdc, 0xd8, 0x01, 0x16, 0xcc, 0xee, 0x63, 0x91, 0xe7, 0x0b, 0x6f, 0xce, 0x3b +.byte 0x0a, 0x69, 0x1a, 0x7c, 0xc2, 0xe3, 0xaf, 0x82, 0x8e, 0x86, 0xd7, 0x5e, 0x8f, 0x57, 0xeb, 0xd3 +.byte 0x21, 0x59, 0xfd, 0x39, 0x37, 0x42, 0x30, 0xbe, 0x50, 0xea, 0xb6, 0x0f, 0xa9, 0x88, 0xd8, 0x2e +.byte 0x2d, 0x69, 0x21, 0xe7, 0xd1, 0x37, 0x18, 0x4e, 0x7d, 0x91, 0xd5, 0x16, 0x5f, 0x6b, 0x5b, 0x00 +.byte 0xc2, 0x39, 0x43, 0x0d, 0x36, 0x85, 0x52, 0xb9, 0x53, 0x65, 0x0f, 0x1d, 0x42, 0xe5, 0x8f, 0xcf +.byte 0x05, 0xd3, 0xee, 0xdc, 0x0c, 0x1a, 0xd9, 0xb8, 0x8b, 0x78, 0x22, 0x67, 0xe4, 0x69, 0xb0, 0x68 +.byte 0xc5, 0x3c, 0xe4, 0x6c, 0x5a, 0x46, 0xe7, 0xcd, 0xc7, 0xfa, 0xef, 0xc4, 0xec, 0x4b, 0xbd, 0x6a +.byte 0xa4, 0xac, 0xfd, 0xcc, 0x28, 0x51, 0xef, 0x92, 0xb4, 0x29, 0xab, 0xab, 0x35, 0x9a, 0x4c, 0xe4 +.byte 0xc4, 0x08, 0xc6, 0x26, 0xcc, 0xf8, 0x69, 0x9f, 0xe4, 0x9c, 0xf0, 0x29, 0xd3, 0x5c, 0xf9, 0xc6 +.byte 0x16, 0x25, 0x9e, 0x23, 0xc3, 0x20, 0xc1, 0x3d, 0x0f, 0x3f, 0x38, 0x40, 0xb0, 0xfe, 0x82, 0x44 +.byte 0x38, 0xaa, 0x5a, 0x1a, 0x8a, 0x6b, 0x63, 0x58, 0x38, 0xb4, 0x15, 0xd3, 0xb6, 0x11, 0x69, 0x7b +.byte 0x1e, 0x54, 0xee, 0x8c, 0x1a, 0x22, 0xac, 0x72, 0x97, 0x3f, 0x23, 0x59, 0x9b, 0xc9, 0x22, 0x84 +.byte 0xc1, 0x07, 0x4f, 0xcc, 0x7f, 0xe2, 0x57, 0xca, 0x12, 0x70, 0xbb, 0xa6, 0x65, 0xf3, 0x69, 0x75 +.byte 0x63, 0xbd, 0x95, 0xfb, 0x1b, 0x97, 0xcd, 0xe4, 0xa8, 0xaf, 0xf6, 0xd1, 0x4e, 0xa8, 0xd9, 0x8a +.byte 0x71, 0x24, 0xcd, 0x36, 0x3d, 0xbc, 0x96, 0xc4, 0xf1, 0x6c, 0xa9, 0xae, 0xe5, 0xcf, 0x0d, 0x6e +.byte 0x28, 0x0d, 0xb0, 0x0e, 0xb5, 0xca, 0x51, 0x7b, 0x78, 0x14, 0xc3, 0x20, 0x2f, 0x7f, 0xfb, 0x14 +.byte 0x55, 0xe1, 0x11, 0x99, 0xfd, 0xd5, 0x0a, 0xa1, 0x9e, 0x02, 0xe3, 0x62, 0x5f, 0xeb, 0x35, 0x4b +.byte 0x2c, 0xb8, 0x72, 0xe8, 0x3e, 0x3d, 0x4f, 0xac, 0x2c, 0xbb, 0x2e, 0x86, 0xe2, 0xa3, 0x76, 0x8f +.byte 0xe5, 0x93, 0x2a, 0xcf, 0xa5, 0xab, 0xc8, 0x5c, 0x8d, 0x4b, 0x06, 0xff, 0x12, 0x46, 0xac, 0x78 +.byte 0xcb, 0x14, 0x07, 0x35, 0xe0, 0xa9, 0xdf, 0x8b, 0xe9, 0xaf, 0x15, 0x4f, 0x16, 0x89, 0x5b, 0xbd +.byte 0xf6, 0x8d, 0xc6, 0x59, 0xae, 0x88, 0x85, 0x0e, 0xc1, 0x89, 0xeb, 0x1f, 0x67, 0xc5, 0x45, 0x8e +.byte 0xff, 0x6d, 0x37, 0x36, 0x2b, 0x78, 0x66, 0x83, 0x91, 0x51, 0x2b, 0x3d, 0xff, 0x51, 0x77, 0x76 +.byte 0x62, 0xa1, 0xec, 0x67, 0x3e, 0x3e, 0x81, 0x83, 0xe0, 0x56, 0xa9, 0x50, 0x1f, 0x1f, 0x7a, 0x99 +.byte 0xab, 0x63, 0xbf, 0x84, 0x17, 0x77, 0xf1, 0x0d, 0x3b, 0xdf, 0xf7, 0x9c, 0x61, 0xb3, 0x35, 0x98 +.byte 0x8a, 0x3a, 0xb2, 0xec, 0x3c, 0x1a, 0x37, 0x3f, 0x7e, 0x8f, 0x92, 0xcf, 0xd9, 0x12, 0x14, 0x64 +.byte 0xda, 0x10, 0x02, 0x15, 0x41, 0xff, 0x4f, 0xc4, 0xeb, 0x1c, 0xa3, 0xc9, 0xfa, 0x99, 0xf7, 0x46 +.byte 0xe9, 0xe1, 0x18, 0xd9, 0xb1, 0xb8, 0x32, 0x2d, 0xcb, 0x14, 0x0c, 0x50, 0xd8, 0x83, 0x65, 0x83 +.byte 0xee, 0xb9, 0x5c, 0xcf, 0xcb, 0x05, 0x5a, 0x4c, 0xfa, 0x19, 0x97, 0x6b, 0xd6, 0x5d, 0x13, 0xd3 +.byte 0xc2, 0x5c, 0x54, 0xbc, 0x32, 0x73, 0xa0, 0x78, 0xf5, 0xf1, 0x6d, 0x1e, 0xcb, 0x9f, 0xa5, 0xa6 +.byte 0x9f, 0x22, 0xdc, 0xd1, 0x51, 0x9e, 0x82, 0x79, 0x64, 0x60, 0x29, 0x13, 0x3e, 0xa3, 0xfd, 0x4f +.byte 0x72, 0x6a, 0xab, 0xe2, 0xd4, 0xe5, 0xb8, 0x24, 0x55, 0x2c, 0x44, 0x4b, 0x8a, 0x88, 0x44, 0x9c +.byte 0xca, 0x84, 0xd3, 0x2a, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x43, 0x00, 0x26, 0x02, 0x30, 0x41 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30 +.byte 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x13, 0x41, 0x66 +.byte 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75 +.byte 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xc4, 0x12, 0xdf, 0xa9, 0x5f, 0xfe, 0x41, 0xdd, 0xdd, 0xf5, 0x9f, 0x8a, 0xe3, 0xf6 +.byte 0xac, 0xe1, 0x3c, 0x78, 0x9a, 0xbc, 0xd8, 0xf0, 0x7f, 0x7a, 0xa0, 0x33, 0x2a, 0xdc, 0x8d, 0x20 +.byte 0x5b, 0xae, 0x2d, 0x6f, 0xe7, 0x93, 0xd9, 0x36, 0x70, 0x6a, 0x68, 0xcf, 0x8e, 0x51, 0xa3, 0x85 +.byte 0x5b, 0x67, 0x04, 0xa0, 0x10, 0x24, 0x6f, 0x5d, 0x28, 0x82, 0xc1, 0x97, 0x57, 0xd8, 0x48, 0x29 +.byte 0x13, 0xb6, 0xe1, 0xbe, 0x91, 0x4d, 0xdf, 0x85, 0x0c, 0x53, 0x18, 0x9a, 0x1e, 0x24, 0xa2, 0x4f +.byte 0x8f, 0xf0, 0xa2, 0x85, 0x0b, 0xcb, 0xf4, 0x29, 0x7f, 0xd2, 0xa4, 0x58, 0xee, 0x26, 0x4d, 0xc9 +.byte 0xaa, 0xa8, 0x7b, 0x9a, 0xd9, 0xfa, 0x38, 0xde, 0x44, 0x57, 0x15, 0xe5, 0xf8, 0x8c, 0xc8, 0xd9 +.byte 0x48, 0xe2, 0x0d, 0x16, 0x27, 0x1d, 0x1e, 0xc8, 0x83, 0x85, 0x25, 0xb7, 0xba, 0xaa, 0x55, 0x41 +.byte 0xcc, 0x03, 0x22, 0x4b, 0x2d, 0x91, 0x8d, 0x8b, 0xe6, 0x89, 0xaf, 0x66, 0xc7, 0xe9, 0xff, 0x2b +.byte 0xe9, 0x3c, 0xac, 0xda, 0xd2, 0xb3, 0xc3, 0xe1, 0x68, 0x9c, 0x89, 0xf8, 0x7a, 0x00, 0x56, 0xde +.byte 0xf4, 0x55, 0x95, 0x6c, 0xfb, 0xba, 0x64, 0xdd, 0x62, 0x8b, 0xdf, 0x0b, 0x77, 0x32, 0xeb, 0x62 +.byte 0xcc, 0x26, 0x9a, 0x9b, 0xbb, 0xaa, 0x62, 0x83, 0x4c, 0xb4, 0x06, 0x7a, 0x30, 0xc8, 0x29, 0xbf +.byte 0xed, 0x06, 0x4d, 0x97, 0xb9, 0x1c, 0xc4, 0x31, 0x2b, 0xd5, 0x5f, 0xbc, 0x53, 0x12, 0x17, 0x9c +.byte 0x99, 0x57, 0x29, 0x66, 0x77, 0x61, 0x21, 0x31, 0x07, 0x2e, 0x25, 0x49, 0x9d, 0x18, 0xf2, 0xee +.byte 0xf3, 0x2b, 0x71, 0x8c, 0xb5, 0xba, 0x39, 0x07, 0x49, 0x77, 0xfc, 0xef, 0x2e, 0x92, 0x90, 0x05 +.byte 0x8d, 0x2d, 0x2f, 0x77, 0x7b, 0xef, 0x43, 0xbf, 0x35, 0xbb, 0x9a, 0xd8, 0xf9, 0x73, 0xa7, 0x2c +.byte 0xf2, 0xd0, 0x57, 0xee, 0x28, 0x4e, 0x26, 0x5f, 0x8f, 0x90, 0x68, 0x09, 0x2f, 0xb8, 0xf8, 0xdc +.byte 0x06, 0xe9, 0x2e, 0x9a, 0x3e, 0x51, 0xa7, 0xd1, 0x22, 0xc4, 0x0a, 0xa7, 0x38, 0x48, 0x6c, 0xb3 +.byte 0xf9, 0xff, 0x7d, 0xab, 0x86, 0x57, 0xe3, 0xba, 0xd6, 0x85, 0x78, 0x77, 0xba, 0x43, 0xea, 0x48 +.byte 0x7f, 0xf6, 0xd8, 0xbe, 0x23, 0x6d, 0x1e, 0xbf, 0xd1, 0x36, 0x6c, 0x58, 0x5c, 0xf1, 0xee, 0xa4 +.byte 0x19, 0x54, 0x1a, 0xf5, 0x03, 0xd2, 0x76, 0xe6, 0xe1, 0x8c, 0xbd, 0x3c, 0xb3, 0xd3, 0x48, 0x4b +.byte 0xe2, 0xc8, 0xf8, 0x7f, 0x92, 0xa8, 0x76, 0x46, 0x9c, 0x42, 0x65, 0x3e, 0xa4, 0x1e, 0xc1, 0x07 +.byte 0x03, 0x5a, 0x46, 0x2d, 0xb8, 0x97, 0xf3, 0xb7, 0xd5, 0xb2, 0x55, 0x21, 0xef, 0xba, 0xdc, 0x4c +.byte 0x00, 0x97, 0xfb, 0x14, 0x95, 0x27, 0x33, 0xbf, 0xe8, 0x43, 0x47, 0x46, 0xd2, 0x08, 0x99, 0x16 +.byte 0x60, 0x3b, 0x9a, 0x7e, 0xd2, 0xe6, 0xed, 0x38, 0xea, 0xec, 0x01, 0x1e, 0x3c, 0x48, 0x56, 0x49 +.byte 0x09, 0xc7, 0x4c, 0x37, 0x00, 0x9e, 0x88, 0x0e, 0xc0, 0x73, 0xe1, 0x6f, 0x66, 0xe9, 0x72, 0x47 +.byte 0x30, 0x3e, 0x10, 0xe5, 0x0b, 0x03, 0xc9, 0x9a, 0x42, 0x00, 0x6c, 0xc5, 0x94, 0x7e, 0x61, 0xc4 +.byte 0x8a, 0xdf, 0x7f, 0x82, 0x1a, 0x0b, 0x59, 0xc4, 0x59, 0x32, 0x77, 0xb3, 0xbc, 0x60, 0x69, 0x56 +.byte 0x39, 0xfd, 0xb4, 0x06, 0x7b, 0x2c, 0xd6, 0x64, 0x36, 0xd9, 0xbd, 0x48, 0xed, 0x84, 0x1f, 0x7e +.byte 0xa5, 0x22, 0x8f, 0x2a, 0xb8, 0x42, 0xf4, 0x82, 0xb7, 0xd4, 0x53, 0x90, 0x78, 0x4e, 0x2d, 0x1a +.byte 0xfd, 0x81, 0x6f, 0x44, 0xd7, 0x3b, 0x01, 0x74, 0x96, 0x42, 0xe0, 0x00, 0xe2, 0x2e, 0x6b, 0xea +.byte 0xc5, 0xee, 0x72, 0xac, 0xbb, 0xbf, 0xfe, 0xea, 0xaa, 0xa8, 0xf8, 0xdc, 0xf6, 0xb2, 0x79, 0x8a +.byte 0xb6, 0x67, 0x02, 0x03, 0x01, 0x00, 0x01, 0x44, 0x00, 0x26, 0x02, 0x30, 0x42, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x09, 0x41, 0x43, 0x43, 0x56, 0x52, 0x41, 0x49, 0x5a +.byte 0x31, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07, 0x50, 0x4b, 0x49, 0x41 +.byte 0x43, 0x43, 0x56, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x43 +.byte 0x43, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0x9b, 0xa9, 0xab, 0xbf, 0x61, 0x4a, 0x97, 0xaf, 0x2f, 0x97, 0x66, 0x9a, 0x74, 0x5f, 0xd0, 0xd9 +.byte 0x96, 0xfd, 0xcf, 0xe2, 0xe4, 0x66, 0xef, 0x1f, 0x1f, 0x47, 0x33, 0xc2, 0x44, 0xa3, 0xdf, 0x9a +.byte 0xde, 0x1f, 0xb5, 0x54, 0xdd, 0x15, 0x7c, 0x69, 0x35, 0x11, 0x6f, 0xbb, 0xc8, 0x0c, 0x8e, 0x6a +.byte 0x18, 0x1e, 0xd8, 0x8f, 0xd9, 0x16, 0xbc, 0x10, 0x48, 0x36, 0x5c, 0xf0, 0x63, 0xb3, 0x90, 0x5a +.byte 0x5c, 0x24, 0x37, 0xd7, 0xa3, 0xd6, 0xcb, 0x09, 0x71, 0xb9, 0xf1, 0x01, 0x72, 0x84, 0xb0, 0x7d +.byte 0xdb, 0x4d, 0x80, 0xcd, 0xfc, 0xd3, 0x6f, 0xc9, 0xf8, 0xda, 0xb6, 0x0e, 0x82, 0xd2, 0x45, 0x85 +.byte 0xa8, 0x1b, 0x68, 0xa8, 0x3d, 0xe8, 0xf4, 0x44, 0x6c, 0xbd, 0xa1, 0xc2, 0xcb, 0x03, 0xbe, 0x8c +.byte 0x3e, 0x13, 0x00, 0x84, 0xdf, 0x4a, 0x48, 0xc0, 0xe3, 0x22, 0x0a, 0xe8, 0xe9, 0x37, 0xa7, 0x18 +.byte 0x4c, 0xb1, 0x09, 0x0d, 0x23, 0x56, 0x7f, 0x04, 0x4d, 0xd9, 0x17, 0x84, 0x18, 0xa5, 0xc8, 0xda +.byte 0x40, 0x94, 0x73, 0xeb, 0xce, 0x0e, 0x57, 0x3c, 0x03, 0x81, 0x3a, 0x9d, 0x0a, 0xa1, 0x57, 0x43 +.byte 0x69, 0xac, 0x57, 0x6d, 0x79, 0x90, 0x78, 0xe5, 0xb5, 0xb4, 0x3b, 0xd8, 0xbc, 0x4c, 0x8d, 0x28 +.byte 0xa1, 0xa7, 0xa3, 0xa7, 0xba, 0x02, 0x4e, 0x25, 0xd1, 0x2a, 0xae, 0xed, 0xae, 0x03, 0x22, 0xb8 +.byte 0x6b, 0x20, 0x0f, 0x30, 0x28, 0x54, 0x95, 0x7f, 0xe0, 0xee, 0xce, 0x0a, 0x66, 0x9d, 0xd1, 0x40 +.byte 0x2d, 0x6e, 0x22, 0xaf, 0x9d, 0x1a, 0xc1, 0x05, 0x19, 0xd2, 0x6f, 0xc0, 0xf2, 0x9f, 0xf8, 0x7b +.byte 0xb3, 0x02, 0x42, 0xfb, 0x50, 0xa9, 0x1d, 0x2d, 0x93, 0x0f, 0x23, 0xab, 0xc6, 0xc1, 0x0f, 0x92 +.byte 0xff, 0xd0, 0xa2, 0x15, 0xf5, 0x53, 0x09, 0x71, 0x1c, 0xff, 0x45, 0x13, 0x84, 0xe6, 0x26, 0x5e +.byte 0xf8, 0xe0, 0x88, 0x1c, 0x0a, 0xfc, 0x16, 0xb6, 0xa8, 0x73, 0x06, 0xb8, 0xf0, 0x63, 0x84, 0x02 +.byte 0xa0, 0xc6, 0x5a, 0xec, 0xe7, 0x74, 0xdf, 0x70, 0xae, 0xa3, 0x83, 0x25, 0xea, 0xd6, 0xc7, 0x97 +.byte 0x87, 0x93, 0xa7, 0xc6, 0x8a, 0x8a, 0x33, 0x97, 0x60, 0x37, 0x10, 0x3e, 0x97, 0x3e, 0x6e, 0x29 +.byte 0x15, 0xd6, 0xa1, 0x0f, 0xd1, 0x88, 0x2c, 0x12, 0x9f, 0x6f, 0xaa, 0xa4, 0xc6, 0x42, 0xeb, 0x41 +.byte 0xa2, 0xe3, 0x95, 0x43, 0xd3, 0x01, 0x85, 0x6d, 0x8e, 0xbb, 0x3b, 0xf3, 0x23, 0x36, 0xc7, 0xfe +.byte 0x3b, 0xe0, 0xa1, 0x25, 0x07, 0x48, 0xab, 0xc9, 0x89, 0x74, 0xff, 0x08, 0x8f, 0x80, 0xbf, 0xc0 +.byte 0x96, 0x65, 0xf3, 0xee, 0xec, 0x4b, 0x68, 0xbd, 0x9d, 0x88, 0xc3, 0x31, 0xb3, 0x40, 0xf1, 0xe8 +.byte 0xcf, 0xf6, 0x38, 0xbb, 0x9c, 0xe4, 0xd1, 0x7f, 0xd4, 0xe5, 0x58, 0x9b, 0x7c, 0xfa, 0xd4, 0xf3 +.byte 0x0e, 0x9b, 0x75, 0x91, 0xe4, 0xba, 0x52, 0x2e, 0x19, 0x7e, 0xd1, 0xf5, 0xcd, 0x5a, 0x19, 0xfc +.byte 0xba, 0x06, 0xf6, 0xfb, 0x52, 0xa8, 0x4b, 0x99, 0x04, 0xdd, 0xf8, 0xf9, 0xb4, 0x8b, 0x50, 0xa3 +.byte 0x4e, 0x62, 0x89, 0xf0, 0x87, 0x24, 0xfa, 0x83, 0x42, 0xc1, 0x87, 0xfa, 0xd5, 0x2d, 0x29, 0x2a +.byte 0x5a, 0x71, 0x7a, 0x64, 0x6a, 0xd7, 0x27, 0x60, 0x63, 0x0d, 0xdb, 0xce, 0x49, 0xf5, 0x8d, 0x1f +.byte 0x90, 0x89, 0x32, 0x17, 0xf8, 0x73, 0x43, 0xb8, 0xd2, 0x5a, 0x93, 0x86, 0x61, 0xd6, 0xe1, 0x75 +.byte 0x0a, 0xea, 0x79, 0x66, 0x76, 0x88, 0x4f, 0x71, 0xeb, 0x04, 0x25, 0xd6, 0x0a, 0x5a, 0x7a, 0x93 +.byte 0xe5, 0xb9, 0x4b, 0x17, 0x40, 0x0f, 0xb1, 0xb6, 0xb9, 0xf5, 0xde, 0x4f, 0xdc, 0xe0, 0xb3, 0xac +.byte 0x3b, 0x11, 0x70, 0x60, 0x84, 0x4a, 0x43, 0x6e, 0x99, 0x20, 0xc0, 0x29, 0x71, 0x0a, 0xc0, 0x65 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x45, 0x00, 0x26, 0x02, 0x30, 0x43, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f +.byte 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x0d, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbd +.byte 0x55, 0x7c, 0x61, 0xd3, 0xb8, 0x1d, 0x04, 0x62, 0x05, 0xa0, 0xae, 0x6c, 0xb7, 0x70, 0xb4, 0x41 +.byte 0xea, 0x4b, 0x03, 0x5e, 0x10, 0x3f, 0x90, 0x5a, 0x1c, 0x8b, 0x3b, 0xb0, 0x66, 0x8b, 0x6c, 0x48 +.byte 0xa6, 0x1c, 0x22, 0xba, 0xd5, 0x40, 0x92, 0xee, 0x33, 0xb2, 0x23, 0x59, 0xc9, 0x8e, 0xbc, 0x58 +.byte 0xda, 0x8b, 0x9e, 0xd0, 0x19, 0xf2, 0x2f, 0x59, 0xc6, 0x8c, 0x63, 0x5a, 0xba, 0x9f, 0xa3, 0x0b +.byte 0xb0, 0xb3, 0x9a, 0x5c, 0xba, 0x11, 0xb8, 0x12, 0xe9, 0x0c, 0xbb, 0xcf, 0x6e, 0x6c, 0x80, 0x87 +.byte 0x29, 0x14, 0x03, 0x2c, 0x8d, 0x24, 0x9a, 0xc8, 0x64, 0x83, 0xb5, 0x6a, 0xac, 0x13, 0x2c, 0x33 +.byte 0xf1, 0x9f, 0xdc, 0x2c, 0x61, 0x3c, 0x1a, 0x3f, 0x70, 0x55, 0x9b, 0xad, 0x00, 0x52, 0x7f, 0xcf +.byte 0x04, 0xb9, 0xfe, 0x36, 0xfa, 0x9c, 0xc0, 0x16, 0xae, 0x62, 0xfe, 0x96, 0x4c, 0x43, 0x7e, 0x55 +.byte 0x14, 0xbe, 0x1a, 0xb3, 0xd2, 0x6d, 0xc2, 0xaf, 0x76, 0x66, 0x95, 0x6b, 0x2a, 0xb0, 0x94, 0x77 +.byte 0x85, 0x5e, 0x04, 0x0f, 0x62, 0x1d, 0x63, 0x75, 0xf7, 0x6b, 0xe7, 0xcb, 0x5b, 0x9a, 0x70, 0xec +.byte 0x3e, 0x67, 0x05, 0xf0, 0xfe, 0x07, 0x08, 0x80, 0xcf, 0x28, 0xdb, 0x05, 0xc6, 0x14, 0x27, 0x2f +.byte 0x86, 0x7d, 0xf0, 0x27, 0xde, 0xff, 0xe6, 0x7e, 0x33, 0x48, 0xe7, 0x0b, 0x1e, 0x58, 0xd1, 0x27 +.byte 0x2b, 0x53, 0x0e, 0x57, 0x4a, 0x65, 0xd7, 0xfb, 0xa2, 0x80, 0x60, 0xfc, 0x4c, 0xbc, 0x35, 0x53 +.byte 0x01, 0x6a, 0x97, 0x72, 0x82, 0xaf, 0xf1, 0x1d, 0x70, 0xe8, 0x9c, 0xf5, 0xef, 0x5e, 0xc2, 0x6c +.byte 0xc7, 0x47, 0x7e, 0x5a, 0x94, 0x85, 0x26, 0x4d, 0x3b, 0xba, 0xeb, 0x4c, 0xe8, 0xb0, 0x09, 0xc2 +.byte 0x65, 0xc2, 0x9d, 0x9d, 0x09, 0x9b, 0x4e, 0xb5, 0x97, 0x05, 0xac, 0xf5, 0x06, 0xa0, 0xf7, 0x36 +.byte 0x05, 0x7e, 0xf4, 0x90, 0xb2, 0x6b, 0xc4, 0xb4, 0xf9, 0x64, 0xea, 0xe9, 0x1a, 0x0a, 0xc8, 0x0d +.byte 0xa8, 0xed, 0x27, 0xc9, 0xd4, 0xe7, 0xb3, 0xb9, 0xab, 0x82, 0x22, 0x90, 0x27, 0x3d, 0x2a, 0xe8 +.byte 0x7c, 0x90, 0xef, 0xbc, 0x4f, 0xfd, 0xe2, 0x0a, 0x24, 0xa7, 0xde, 0x65, 0x24, 0xa4, 0x5d, 0xea +.byte 0xc0, 0x76, 0x30, 0xd3, 0x77, 0x50, 0xf8, 0x0d, 0x04, 0x9b, 0x94, 0x36, 0x01, 0x73, 0xca, 0x06 +.byte 0x58, 0xa6, 0xd3, 0x3b, 0xdc, 0xfa, 0x04, 0x46, 0x13, 0x55, 0x8a, 0xc9, 0x44, 0x47, 0xb8, 0x51 +.byte 0x39, 0x1a, 0x2e, 0xe8, 0x34, 0xe2, 0x79, 0xcb, 0x59, 0x4a, 0x0a, 0x7f, 0xbc, 0xa6, 0xef, 0x1f +.byte 0x03, 0x67, 0x6a, 0x59, 0x2b, 0x25, 0x62, 0x93, 0xd9, 0x53, 0x19, 0x66, 0x3c, 0x27, 0x62, 0x29 +.byte 0x86, 0x4d, 0xa4, 0x6b, 0xee, 0xff, 0xd4, 0x4e, 0xba, 0xd5, 0xb4, 0xe2, 0x8e, 0x48, 0x5a, 0x00 +.byte 0x19, 0x09, 0xf1, 0x05, 0xd9, 0xce, 0x91, 0xb1, 0xf7, 0xeb, 0xe9, 0x39, 0x4f, 0xf6, 0x6f, 0x04 +.byte 0x43, 0x9a, 0x55, 0xf5, 0x3e, 0x05, 0x14, 0xbd, 0xbf, 0xb3, 0x59, 0xb4, 0xd8, 0x8e, 0x33, 0x84 +.byte 0xa3, 0x90, 0x52, 0xaa, 0xb3, 0x02, 0x95, 0x60, 0xf9, 0x0c, 0x4c, 0x68, 0xf9, 0xee, 0xd5, 0x17 +.byte 0x0d, 0xf8, 0x71, 0x57, 0xb5, 0x25, 0xe4, 0x29, 0xee, 0x65, 0x5d, 0xaf, 0xd1, 0xee, 0x3c, 0x17 +.byte 0x0b, 0x5a, 0x43, 0xc5, 0xa5, 0x86, 0xea, 0x24, 0x9e, 0xe2, 0x05, 0x07, 0xdc, 0x34, 0x42, 0x12 +.byte 0x91, 0xd6, 0x39, 0x74, 0xae, 0x4c, 0x41, 0x82, 0xdb, 0xf2, 0xa6, 0x48, 0xd1, 0xb3, 0x9b, 0xf3 +.byte 0x33, 0xaa, 0xf3, 0xa6, 0xc0, 0xc5, 0x4e, 0xf5, 0xf4, 0x9d, 0x76, 0x63, 0xe6, 0x02, 0xc6, 0x22 +.byte 0x4b, 0xc1, 0x95, 0x3f, 0x50, 0x64, 0x2c, 0x54, 0xe5, 0xb6, 0xf0, 0x3c, 0x29, 0xcf, 0x57, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x02, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x49, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x11, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x46, 0x69, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20 +.byte 0x4f, 0x79, 0x6a, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x54, 0x65 +.byte 0x6c, 0x69, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76, 0x32, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb2 +.byte 0xd0, 0x3f, 0x07, 0xbc, 0xe2, 0x7b, 0xd0, 0x6b, 0x99, 0xf8, 0xe2, 0x77, 0x69, 0xe7, 0xce, 0x9d +.byte 0xa4, 0x03, 0xbc, 0x82, 0x6d, 0xa1, 0xfe, 0x81, 0x65, 0x1f, 0x4c, 0x27, 0xac, 0x8e, 0x00, 0xba +.byte 0x16, 0x7b, 0xeb, 0x30, 0x6a, 0x00, 0xc0, 0xb3, 0x74, 0x68, 0x7e, 0xb2, 0xaf, 0xc7, 0xd5, 0x62 +.byte 0xb3, 0x7a, 0x3f, 0x50, 0xca, 0x8c, 0x36, 0x44, 0x24, 0x63, 0xd2, 0x36, 0xe9, 0x0c, 0x85, 0xf6 +.byte 0x43, 0x76, 0xd5, 0x4c, 0xa1, 0x60, 0x72, 0x67, 0xe2, 0x28, 0x33, 0xa5, 0xcb, 0x31, 0xb8, 0x3a +.byte 0x22, 0x23, 0x34, 0xb8, 0x7d, 0xbd, 0x56, 0x22, 0x40, 0x9d, 0xea, 0xf4, 0x7b, 0x03, 0xad, 0x68 +.byte 0xfc, 0xb2, 0x81, 0x4f, 0x98, 0xd0, 0x74, 0xea, 0x8d, 0xe5, 0x7d, 0xcd, 0x63, 0xc3, 0xa3, 0xf6 +.byte 0xde, 0x92, 0xc2, 0x58, 0x19, 0xe0, 0x96, 0xbb, 0xc5, 0xc4, 0xa9, 0x3d, 0xa5, 0x74, 0x96, 0xfe +.byte 0xaf, 0xf9, 0x89, 0xaa, 0xbd, 0x95, 0x17, 0x54, 0xd8, 0x78, 0x44, 0xf1, 0x0c, 0x77, 0x15, 0x92 +.byte 0xe0, 0x98, 0x42, 0xa7, 0xa4, 0xd6, 0xaa, 0x20, 0x92, 0xcd, 0xc1, 0xa0, 0xb3, 0x96, 0xb2, 0x3a +.byte 0x84, 0x42, 0x8d, 0x7d, 0xd5, 0x95, 0xe4, 0xd6, 0xdb, 0xe9, 0x62, 0xc4, 0x58, 0xb3, 0x79, 0xc5 +.byte 0x8c, 0xd3, 0x35, 0x33, 0x83, 0x9f, 0x75, 0xa1, 0x52, 0x27, 0x61, 0x38, 0xf1, 0x59, 0x3d, 0x8e +.byte 0x50, 0xe0, 0xbd, 0x79, 0x3c, 0xe7, 0x6c, 0x96, 0xfe, 0x5e, 0xd9, 0x02, 0x65, 0xb4, 0x8e, 0x5c +.byte 0xd0, 0x11, 0x34, 0xdf, 0x5d, 0xbf, 0x52, 0xa7, 0x81, 0x00, 0xc3, 0x7f, 0x99, 0x45, 0x99, 0x15 +.byte 0xd5, 0x17, 0xc8, 0x0a, 0x53, 0xec, 0x63, 0xf3, 0x99, 0x7d, 0xcc, 0x69, 0x12, 0x86, 0xc2, 0x17 +.byte 0xf0, 0x01, 0x9e, 0xbf, 0x84, 0xbc, 0xd1, 0x52, 0xcb, 0x1b, 0x92, 0x66, 0xce, 0xa4, 0x53, 0xe5 +.byte 0xa1, 0xbf, 0xc4, 0xdb, 0x09, 0xd6, 0xe6, 0x89, 0x56, 0x2b, 0xc8, 0xe3, 0x7c, 0xde, 0xe3, 0xff +.byte 0x89, 0xe5, 0x35, 0x6e, 0x28, 0xe8, 0x6c, 0x0b, 0x23, 0x51, 0xa9, 0x25, 0x05, 0xeb, 0x48, 0xf8 +.byte 0xdd, 0xb1, 0xca, 0xfa, 0x6c, 0x08, 0x51, 0xef, 0xb7, 0x18, 0x6c, 0x44, 0xca, 0x26, 0xe1, 0x73 +.byte 0xc6, 0x89, 0x06, 0x81, 0xe5, 0x8a, 0xac, 0xb0, 0xe2, 0x29, 0xc6, 0xb9, 0x24, 0xb3, 0x6b, 0x44 +.byte 0x11, 0xf4, 0xa5, 0x43, 0xc2, 0x4c, 0x43, 0xe5, 0x70, 0x36, 0x8c, 0xb6, 0x33, 0x57, 0x7a, 0x95 +.byte 0x2e, 0x82, 0xa0, 0xf4, 0x5c, 0x10, 0xb3, 0x61, 0x83, 0xf6, 0x02, 0x05, 0x86, 0x2e, 0x7c, 0x2d +.byte 0x6c, 0xdc, 0x03, 0x46, 0x6e, 0x35, 0x93, 0xd5, 0x7a, 0x95, 0x2f, 0xde, 0x20, 0xd8, 0x5b, 0x7e +.byte 0x94, 0x90, 0x04, 0x6a, 0xba, 0x59, 0x3d, 0x04, 0x05, 0x75, 0x9d, 0x37, 0xa2, 0x0e, 0x2e, 0x3d +.byte 0xeb, 0xc1, 0xa4, 0x52, 0x83, 0xfe, 0xd0, 0x6b, 0xd4, 0x66, 0x8e, 0xdc, 0xc6, 0xe9, 0x12, 0x4e +.byte 0x1d, 0x2a, 0x57, 0xaa, 0x10, 0xbc, 0x7c, 0x5e, 0x82, 0x7d, 0xa6, 0xa6, 0xc9, 0xf2, 0x2d, 0xb9 +.byte 0xf5, 0x17, 0x27, 0xad, 0xd1, 0x0e, 0x89, 0x54, 0x2b, 0x95, 0xfa, 0xc0, 0xad, 0x1d, 0x98, 0x14 +.byte 0x78, 0x33, 0x42, 0x86, 0x0a, 0xa9, 0x73, 0xb5, 0xfb, 0x74, 0x0d, 0xb7, 0x1b, 0x30, 0x19, 0xc4 +.byte 0x5a, 0x0e, 0x1c, 0x27, 0xb7, 0xda, 0x18, 0xd0, 0xff, 0x8a, 0xc8, 0x05, 0xba, 0xf1, 0xaa, 0x1c +.byte 0xa2, 0x37, 0xb7, 0xe6, 0x48, 0xa4, 0x46, 0x2c, 0x94, 0xea, 0xa8, 0x76, 0x62, 0x47, 0x8b, 0x10 +.byte 0x53, 0x07, 0x48, 0x57, 0x6c, 0xe2, 0x92, 0x4d, 0xb6, 0xae, 0x05, 0xcb, 0xdc, 0xc1, 0x4a, 0x5e +.byte 0x8f, 0xac, 0x3d, 0x19, 0x4e, 0xc2, 0xed, 0x60, 0x75, 0x2b, 0xdb, 0xc1, 0xca, 0x42, 0xd5, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x01, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69, 0x61, 0x6c, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xf6 +.byte 0x1b, 0x4f, 0x67, 0x07, 0x2b, 0xa1, 0x15, 0xf5, 0x06, 0x22, 0xcb, 0x1f, 0x01, 0xb2, 0xe3, 0x73 +.byte 0x45, 0x06, 0x44, 0x49, 0x2c, 0xbb, 0x49, 0x25, 0x14, 0xd6, 0xce, 0xc3, 0xb7, 0xab, 0x2c, 0x4f +.byte 0xc6, 0x41, 0x32, 0x94, 0x57, 0xfa, 0x12, 0xa7, 0x5b, 0x0e, 0xe2, 0x8f, 0x1f, 0x1e, 0x86, 0x19 +.byte 0xa7, 0xaa, 0xb5, 0x2d, 0xb9, 0x5f, 0x0d, 0x8a, 0xc2, 0xaf, 0x85, 0x35, 0x79, 0x32, 0x2d, 0xbb +.byte 0x1c, 0x62, 0x37, 0xf2, 0xb1, 0x5b, 0x4a, 0x3d, 0xca, 0xcd, 0x71, 0x5f, 0xe9, 0x42, 0xbe, 0x94 +.byte 0xe8, 0xc8, 0xde, 0xf9, 0x22, 0x48, 0x64, 0xc6, 0xe5, 0xab, 0xc6, 0x2b, 0x6d, 0xad, 0x05, 0xf0 +.byte 0xfa, 0xd5, 0x0b, 0xcf, 0x9a, 0xe5, 0xf0, 0x50, 0xa4, 0x8b, 0x3b, 0x47, 0xa5, 0x23, 0x5b, 0x7a +.byte 0x7a, 0xf8, 0x33, 0x3f, 0xb8, 0xef, 0x99, 0x97, 0xe3, 0x20, 0xc1, 0xd6, 0x28, 0x89, 0xcf, 0x94 +.byte 0xfb, 0xb9, 0x45, 0xed, 0xe3, 0x40, 0x17, 0x11, 0xd4, 0x74, 0xf0, 0x0b, 0x31, 0xe2, 0x2b, 0x26 +.byte 0x6a, 0x9b, 0x4c, 0x57, 0xae, 0xac, 0x20, 0x3e, 0xba, 0x45, 0x7a, 0x05, 0xf3, 0xbd, 0x9b, 0x69 +.byte 0x15, 0xae, 0x7d, 0x4e, 0x20, 0x63, 0xc4, 0x35, 0x76, 0x3a, 0x07, 0x02, 0xc9, 0x37, 0xfd, 0xc7 +.byte 0x47, 0xee, 0xe8, 0xf1, 0x76, 0x1d, 0x73, 0x15, 0xf2, 0x97, 0xa4, 0xb5, 0xc8, 0x7a, 0x79, 0xd9 +.byte 0x42, 0xaa, 0x2b, 0x7f, 0x5c, 0xfe, 0xce, 0x26, 0x4f, 0xa3, 0x66, 0x81, 0x35, 0xaf, 0x44, 0xba +.byte 0x54, 0x1e, 0x1c, 0x30, 0x32, 0x65, 0x9d, 0xe6, 0x3c, 0x93, 0x5e, 0x50, 0x4e, 0x7a, 0xe3, 0x3a +.byte 0xd4, 0x6e, 0xcc, 0x1a, 0xfb, 0xf9, 0xd2, 0x37, 0xae, 0x24, 0x2a, 0xab, 0x57, 0x03, 0x22, 0x28 +.byte 0x0d, 0x49, 0x75, 0x7f, 0xb7, 0x28, 0xda, 0x75, 0xbf, 0x8e, 0xe3, 0xdc, 0x0e, 0x79, 0x31, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x01, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb4 +.byte 0x84, 0xcc, 0x33, 0x17, 0x2e, 0x6b, 0x94, 0x6c, 0x6b, 0x61, 0x52, 0xa0, 0xeb, 0xa3, 0xcf, 0x79 +.byte 0x94, 0x4c, 0xe5, 0x94, 0x80, 0x99, 0xcb, 0x55, 0x64, 0x44, 0x65, 0x8f, 0x67, 0x64, 0xe2, 0x06 +.byte 0xe3, 0x5c, 0x37, 0x49, 0xf6, 0x2f, 0x9b, 0x84, 0x84, 0x1e, 0x2d, 0xf2, 0x60, 0x9d, 0x30, 0x4e +.byte 0xcc, 0x84, 0x85, 0xe2, 0x2c, 0xcf, 0x1e, 0x9e, 0xfe, 0x36, 0xab, 0x33, 0x77, 0x35, 0x44, 0xd8 +.byte 0x35, 0x96, 0x1a, 0x3d, 0x36, 0xe8, 0x7a, 0x0e, 0xd8, 0xd5, 0x47, 0xa1, 0x6a, 0x69, 0x8b, 0xd9 +.byte 0xfc, 0xbb, 0x3a, 0xae, 0x79, 0x5a, 0xd5, 0xf4, 0xd6, 0x71, 0xbb, 0x9a, 0x90, 0x23, 0x6b, 0x9a +.byte 0xb7, 0x88, 0x74, 0x87, 0x0c, 0x1e, 0x5f, 0xb9, 0x9e, 0x2d, 0xfa, 0xab, 0x53, 0x2b, 0xdc, 0xbb +.byte 0x76, 0x3e, 0x93, 0x4c, 0x08, 0x08, 0x8c, 0x1e, 0xa2, 0x23, 0x1c, 0xd4, 0x6a, 0xad, 0x22, 0xba +.byte 0x99, 0x01, 0x2e, 0x6d, 0x65, 0xcb, 0xbe, 0x24, 0x66, 0x55, 0x24, 0x4b, 0x40, 0x44, 0xb1, 0x1b +.byte 0xd7, 0xe1, 0xc2, 0x85, 0xc0, 0xde, 0x10, 0x3f, 0x3d, 0xed, 0xb8, 0xfc, 0xf1, 0xf1, 0x23, 0x53 +.byte 0xdc, 0xbf, 0x65, 0x97, 0x6f, 0xd9, 0xf9, 0x40, 0x71, 0x8d, 0x7d, 0xbd, 0x95, 0xd4, 0xce, 0xbe +.byte 0xa0, 0x5e, 0x27, 0x23, 0xde, 0xfd, 0xa6, 0xd0, 0x26, 0x0e, 0x00, 0x29, 0xeb, 0x3c, 0x46, 0xf0 +.byte 0x3d, 0x60, 0xbf, 0x3f, 0x50, 0xd2, 0xdc, 0x26, 0x41, 0x51, 0x9e, 0x14, 0x37, 0x42, 0x04, 0xa3 +.byte 0x70, 0x57, 0xa8, 0x1b, 0x87, 0xed, 0x2d, 0xfa, 0x7b, 0xee, 0x8c, 0x0a, 0xe3, 0xa9, 0x66, 0x89 +.byte 0x19, 0xcb, 0x41, 0xf9, 0xdd, 0x44, 0x36, 0x61, 0xcf, 0xe2, 0x77, 0x46, 0xc8, 0x7d, 0xf6, 0xf4 +.byte 0x92, 0x81, 0x36, 0xfd, 0xdb, 0x34, 0xf1, 0x72, 0x7e, 0xf3, 0x0c, 0x16, 0xbd, 0xb4, 0x15, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74 +.byte 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x51, 0x75, 0x6f +.byte 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0x9a, 0x18, 0xca, 0x4b, 0x94, 0x0d, 0x00, 0x2d, 0xaf, 0x03, 0x29, 0x8a, 0xf0, 0x0f, 0x81, 0xc8 +.byte 0xae, 0x4c, 0x19, 0x85, 0x1d, 0x08, 0x9f, 0xab, 0x29, 0x44, 0x85, 0xf3, 0x2f, 0x81, 0xad, 0x32 +.byte 0x1e, 0x90, 0x46, 0xbf, 0xa3, 0x86, 0x26, 0x1a, 0x1e, 0xfe, 0x7e, 0x1c, 0x18, 0x3a, 0x5c, 0x9c +.byte 0x60, 0x17, 0x2a, 0x3a, 0x74, 0x83, 0x33, 0x30, 0x7d, 0x61, 0x54, 0x11, 0xcb, 0xed, 0xab, 0xe0 +.byte 0xe6, 0xd2, 0xa2, 0x7e, 0xf5, 0x6b, 0x6f, 0x18, 0xb7, 0x0a, 0x0b, 0x2d, 0xfd, 0xe9, 0x3e, 0xef +.byte 0x0a, 0xc6, 0xb3, 0x10, 0xe9, 0xdc, 0xc2, 0x46, 0x17, 0xf8, 0x5d, 0xfd, 0xa4, 0xda, 0xff, 0x9e +.byte 0x49, 0x5a, 0x9c, 0xe6, 0x33, 0xe6, 0x24, 0x96, 0xf7, 0x3f, 0xba, 0x5b, 0x2b, 0x1c, 0x7a, 0x35 +.byte 0xc2, 0xd6, 0x67, 0xfe, 0xab, 0x66, 0x50, 0x8b, 0x6d, 0x28, 0x60, 0x2b, 0xef, 0xd7, 0x60, 0xc3 +.byte 0xc7, 0x93, 0xbc, 0x8d, 0x36, 0x91, 0xf3, 0x7f, 0xf8, 0xdb, 0x11, 0x13, 0xc4, 0x9c, 0x77, 0x76 +.byte 0xc1, 0xae, 0xb7, 0x02, 0x6a, 0x81, 0x7a, 0xa9, 0x45, 0x83, 0xe2, 0x05, 0xe6, 0xb9, 0x56, 0xc1 +.byte 0x94, 0x37, 0x8f, 0x48, 0x71, 0x63, 0x22, 0xec, 0x17, 0x65, 0x07, 0x95, 0x8a, 0x4b, 0xdf, 0x8f +.byte 0xc6, 0x5a, 0x0a, 0xe5, 0xb0, 0xe3, 0x5f, 0x5e, 0x6b, 0x11, 0xab, 0x0c, 0xf9, 0x85, 0xeb, 0x44 +.byte 0xe9, 0xf8, 0x04, 0x73, 0xf2, 0xe9, 0xfe, 0x5c, 0x98, 0x8c, 0xf5, 0x73, 0xaf, 0x6b, 0xb4, 0x7e +.byte 0xcd, 0xd4, 0x5c, 0x02, 0x2b, 0x4c, 0x39, 0xe1, 0xb2, 0x95, 0x95, 0x2d, 0x42, 0x87, 0xd7, 0xd5 +.byte 0xb3, 0x90, 0x43, 0xb7, 0x6c, 0x13, 0xf1, 0xde, 0xdd, 0xf6, 0xc4, 0xf8, 0x89, 0x3f, 0xd1, 0x75 +.byte 0xf5, 0x92, 0xc3, 0x91, 0xd5, 0x8a, 0x88, 0xd0, 0x90, 0xec, 0xdc, 0x6d, 0xde, 0x89, 0xc2, 0x65 +.byte 0x71, 0x96, 0x8b, 0x0d, 0x03, 0xfd, 0x9c, 0xbf, 0x5b, 0x16, 0xac, 0x92, 0xdb, 0xea, 0xfe, 0x79 +.byte 0x7c, 0xad, 0xeb, 0xaf, 0xf7, 0x16, 0xcb, 0xdb, 0xcd, 0x25, 0x2b, 0xe5, 0x1f, 0xfb, 0x9a, 0x9f +.byte 0xe2, 0x51, 0xcc, 0x3a, 0x53, 0x0c, 0x48, 0xe6, 0x0e, 0xbd, 0xc9, 0xb4, 0x76, 0x06, 0x52, 0xe6 +.byte 0x11, 0x13, 0x85, 0x72, 0x63, 0x03, 0x04, 0xe0, 0x04, 0x36, 0x2b, 0x20, 0x19, 0x02, 0xe8, 0x74 +.byte 0xa7, 0x1f, 0xb6, 0xc9, 0x56, 0x66, 0xf0, 0x75, 0x25, 0xdc, 0x67, 0xc1, 0x0e, 0x61, 0x60, 0x88 +.byte 0xb3, 0x3e, 0xd1, 0xa8, 0xfc, 0xa3, 0xda, 0x1d, 0xb0, 0xd1, 0xb1, 0x23, 0x54, 0xdf, 0x44, 0x76 +.byte 0x6d, 0xed, 0x41, 0xd8, 0xc1, 0xb2, 0x22, 0xb6, 0x53, 0x1c, 0xdf, 0x35, 0x1d, 0xdc, 0xa1, 0x77 +.byte 0x2a, 0x31, 0xe4, 0x2d, 0xf5, 0xe5, 0xe5, 0xdb, 0xc8, 0xe0, 0xff, 0xe5, 0x80, 0xd7, 0x0b, 0x63 +.byte 0xa0, 0xff, 0x33, 0xa1, 0x0f, 0xba, 0x2c, 0x15, 0x15, 0xea, 0x97, 0xb3, 0xd2, 0xa2, 0xb5, 0xbe +.byte 0xf2, 0x8c, 0x96, 0x1e, 0x1a, 0x8f, 0x1d, 0x6c, 0xa4, 0x61, 0x37, 0xb9, 0x86, 0x73, 0x33, 0xd7 +.byte 0x97, 0x96, 0x9e, 0x23, 0x7d, 0x82, 0xa4, 0x4c, 0x81, 0xe2, 0xa1, 0xd1, 0xba, 0x67, 0x5f, 0x95 +.byte 0x07, 0xa3, 0x27, 0x11, 0xee, 0x16, 0x10, 0x7b, 0xbc, 0x45, 0x4a, 0x4c, 0xb2, 0x04, 0xd2, 0xab +.byte 0xef, 0xd5, 0xfd, 0x0c, 0x51, 0xce, 0x50, 0x6a, 0x08, 0x31, 0xf9, 0x91, 0xda, 0x0c, 0x8f, 0x64 +.byte 0x5c, 0x03, 0xc3, 0x3a, 0x8b, 0x20, 0x3f, 0x6e, 0x8d, 0x67, 0x3d, 0x3a, 0xd6, 0xfe, 0x7d, 0x5b +.byte 0x88, 0xc9, 0x5e, 0xfb, 0xcc, 0x61, 0xdc, 0x8b, 0x33, 0x77, 0xd3, 0x44, 0x32, 0x35, 0x09, 0x62 +.byte 0x04, 0x92, 0x16, 0x10, 0xd8, 0x9e, 0x27, 0x47, 0xfb, 0x3b, 0x21, 0xe3, 0xf8, 0xeb, 0x1d, 0x5b +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69 +.byte 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x51, 0x75 +.byte 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xcc, 0x57, 0x42, 0x16, 0x54, 0x9c, 0xe6, 0x98, 0xd3, 0xd3, 0x4d, 0xee, 0xfe, 0xed, 0xc7 +.byte 0x9f, 0x43, 0x39, 0x4a, 0x65, 0xb3, 0xe8, 0x16, 0x88, 0x34, 0xdb, 0x0d, 0x59, 0x91, 0x74, 0xcf +.byte 0x92, 0xb8, 0x04, 0x40, 0xad, 0x02, 0x4b, 0x31, 0xab, 0xbc, 0x8d, 0x91, 0x68, 0xd8, 0x20, 0x0e +.byte 0x1a, 0x01, 0xe2, 0x1a, 0x7b, 0x4e, 0x17, 0x5d, 0xe2, 0x8a, 0xb7, 0x3f, 0x99, 0x1a, 0xcd, 0xeb +.byte 0x61, 0xab, 0xc2, 0x65, 0xa6, 0x1f, 0xb7, 0xb7, 0xbd, 0xb7, 0x8f, 0xfc, 0xfd, 0x70, 0x8f, 0x0b +.byte 0xa0, 0x67, 0xbe, 0x01, 0xa2, 0x59, 0xcf, 0x71, 0xe6, 0x0f, 0x29, 0x76, 0xff, 0xb1, 0x56, 0x79 +.byte 0x45, 0x2b, 0x1f, 0x9e, 0x7a, 0x54, 0xe8, 0xa3, 0x29, 0x35, 0x68, 0xa4, 0x01, 0x4f, 0x0f, 0xa4 +.byte 0x2e, 0x37, 0xef, 0x1b, 0xbf, 0xe3, 0x8f, 0x10, 0xa8, 0x72, 0xab, 0x58, 0x57, 0xe7, 0x54, 0x86 +.byte 0xc8, 0xc9, 0xf3, 0x5b, 0xda, 0x2c, 0xda, 0x5d, 0x8e, 0x6e, 0x3c, 0xa3, 0x3e, 0xda, 0xfb, 0x82 +.byte 0xe5, 0xdd, 0xf2, 0x5c, 0xb2, 0x05, 0x33, 0x6f, 0x8a, 0x36, 0xce, 0xd0, 0x13, 0x4e, 0xff, 0xbf +.byte 0x4a, 0x0c, 0x34, 0x4c, 0xa6, 0xc3, 0x21, 0xbd, 0x50, 0x04, 0x55, 0xeb, 0xb1, 0xbb, 0x9d, 0xfb +.byte 0x45, 0x1e, 0x64, 0x15, 0xde, 0x55, 0x01, 0x8c, 0x02, 0x76, 0xb5, 0xcb, 0xa1, 0x3f, 0x42, 0x69 +.byte 0xbc, 0x2f, 0xbd, 0x68, 0x43, 0x16, 0x56, 0x89, 0x2a, 0x37, 0x61, 0x91, 0xfd, 0xa6, 0xae, 0x4e +.byte 0xc0, 0xcb, 0x14, 0x65, 0x94, 0x37, 0x4b, 0x92, 0x06, 0xef, 0x04, 0xd0, 0xc8, 0x9c, 0x88, 0xdb +.byte 0x0b, 0x7b, 0x81, 0xaf, 0xb1, 0x3d, 0x2a, 0xc4, 0x65, 0x3a, 0x78, 0xb6, 0xee, 0xdc, 0x80, 0xb1 +.byte 0xd2, 0xd3, 0x99, 0x9c, 0x3a, 0xee, 0x6b, 0x5a, 0x6b, 0xb3, 0x8d, 0xb7, 0xd5, 0xce, 0x9c, 0xc2 +.byte 0xbe, 0xa5, 0x4b, 0x2f, 0x16, 0xb1, 0x9e, 0x68, 0x3b, 0x06, 0x6f, 0xae, 0x7d, 0x9f, 0xf8, 0xde +.byte 0xec, 0xcc, 0x29, 0xa7, 0x98, 0xa3, 0x25, 0x43, 0x2f, 0xef, 0xf1, 0x5f, 0x26, 0xe1, 0x88, 0x4d +.byte 0xf8, 0x5e, 0x6e, 0xd7, 0xd9, 0x14, 0x6e, 0x19, 0x33, 0x69, 0xa7, 0x3b, 0x84, 0x89, 0x93, 0xc4 +.byte 0x53, 0x55, 0x13, 0xa1, 0x51, 0x78, 0x40, 0xf8, 0xb8, 0xc9, 0xa2, 0xee, 0x7b, 0xba, 0x52, 0x42 +.byte 0x83, 0x9e, 0x14, 0xed, 0x05, 0x52, 0x5a, 0x59, 0x56, 0xa7, 0x97, 0xfc, 0x9d, 0x3f, 0x0a, 0x29 +.byte 0xd8, 0xdc, 0x4f, 0x91, 0x0e, 0x13, 0xbc, 0xde, 0x95, 0xa4, 0xdf, 0x8b, 0x99, 0xbe, 0xac, 0x9b +.byte 0x33, 0x88, 0xef, 0xb5, 0x81, 0xaf, 0x1b, 0xc6, 0x22, 0x53, 0xc8, 0xf6, 0xc7, 0xee, 0x97, 0x14 +.byte 0xb0, 0xc5, 0x7c, 0x78, 0x52, 0xc8, 0xf0, 0xce, 0x6e, 0x77, 0x60, 0x84, 0xa6, 0xe9, 0x2a, 0x76 +.byte 0x20, 0xed, 0x58, 0x01, 0x17, 0x30, 0x93, 0xe9, 0x1a, 0x8b, 0xe0, 0x73, 0x63, 0xd9, 0x6a, 0x92 +.byte 0x94, 0x49, 0x4e, 0xb4, 0xad, 0x4a, 0x85, 0xc4, 0xa3, 0x22, 0x30, 0xfc, 0x09, 0xed, 0x68, 0x22 +.byte 0x73, 0xa6, 0x88, 0x0c, 0x55, 0x21, 0x58, 0xc5, 0xe1, 0x3a, 0x9f, 0x2a, 0xdd, 0xca, 0xe1, 0x90 +.byte 0xe0, 0xd9, 0x73, 0xab, 0x6c, 0x80, 0xb8, 0xe8, 0x0b, 0x64, 0x93, 0xa0, 0x9c, 0x8c, 0x19, 0xff +.byte 0xb3, 0xd2, 0x0c, 0xec, 0x91, 0x26, 0x87, 0x8a, 0xb3, 0xa2, 0xe1, 0x70, 0x8f, 0x2c, 0x0a, 0xe5 +.byte 0xcd, 0x6d, 0x68, 0x51, 0xeb, 0xda, 0x3f, 0x05, 0x7f, 0x8b, 0x32, 0xe6, 0x13, 0x5c, 0x6b, 0xfe +.byte 0x5f, 0x40, 0xe2, 0x22, 0xc8, 0xb4, 0xb4, 0x64, 0x4f, 0xd6, 0xba, 0x7d, 0x48, 0x3e, 0xa8, 0x69 +.byte 0x0c, 0xd7, 0xbb, 0x86, 0x71, 0xc9, 0x73, 0xb8, 0x3f, 0x3b, 0x9d, 0x25, 0x4b, 0xda, 0xff, 0x40 +.byte 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x53, 0x77, 0x69, 0x73, 0x73 +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47 +.byte 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xaf, 0xe4, 0xee, 0x7e, 0x8b, 0x24, 0x0e, 0x12, 0x6e, 0xa9, 0x50, 0x2d, 0x16, 0x44 +.byte 0x3b, 0x92, 0x92, 0x5c, 0xca, 0xb8, 0x5d, 0x84, 0x92, 0x42, 0x13, 0x2a, 0xbc, 0x65, 0x57, 0x82 +.byte 0x40, 0x3e, 0x57, 0x24, 0xcd, 0x50, 0x8b, 0x25, 0x2a, 0xb7, 0x6f, 0xfc, 0xef, 0xa2, 0xd0, 0xc0 +.byte 0x1f, 0x02, 0x24, 0x4a, 0x13, 0x96, 0x8f, 0x23, 0x13, 0xe6, 0x28, 0x58, 0x00, 0xa3, 0x47, 0xc7 +.byte 0x06, 0xa7, 0x84, 0x23, 0x2b, 0xbb, 0xbd, 0x96, 0x2b, 0x7f, 0x55, 0xcc, 0x8b, 0xc1, 0x57, 0x1f +.byte 0x0e, 0x62, 0x65, 0x0f, 0xdd, 0x3d, 0x56, 0x8a, 0x73, 0xda, 0xae, 0x7e, 0x6d, 0xba, 0x81, 0x1c +.byte 0x7e, 0x42, 0x8c, 0x20, 0x35, 0xd9, 0x43, 0x4d, 0x84, 0xfa, 0x84, 0xdb, 0x52, 0x2c, 0xf3, 0x0e +.byte 0x27, 0x77, 0x0b, 0x6b, 0xbf, 0x11, 0x2f, 0x72, 0x78, 0x9f, 0x2e, 0xd8, 0x3e, 0xe6, 0x18, 0x37 +.byte 0x5a, 0x2a, 0x72, 0xf9, 0xda, 0x62, 0x90, 0x92, 0x95, 0xca, 0x1f, 0x9c, 0xe9, 0xb3, 0x3c, 0x2b +.byte 0xcb, 0xf3, 0x01, 0x13, 0xbf, 0x5a, 0xcf, 0xc1, 0xb5, 0x0a, 0x60, 0xbd, 0xdd, 0xb5, 0x99, 0x64 +.byte 0x53, 0xb8, 0xa0, 0x96, 0xb3, 0x6f, 0xe2, 0x26, 0x77, 0x91, 0x8c, 0xe0, 0x62, 0x10, 0x02, 0x9f +.byte 0x34, 0x0f, 0xa4, 0xd5, 0x92, 0x33, 0x51, 0xde, 0xbe, 0x8d, 0xba, 0x84, 0x7a, 0x60, 0x3c, 0x6a +.byte 0xdb, 0x9f, 0x2b, 0xec, 0xde, 0xde, 0x01, 0x3f, 0x6e, 0x4d, 0xe5, 0x50, 0x86, 0xcb, 0xb4, 0xaf +.byte 0xed, 0x44, 0x40, 0xc5, 0xca, 0x5a, 0x8c, 0xda, 0xd2, 0x2b, 0x7c, 0xa8, 0xee, 0xbe, 0xa6, 0xe5 +.byte 0x0a, 0xaa, 0x0e, 0xa5, 0xdf, 0x05, 0x52, 0xb7, 0x55, 0xc7, 0x22, 0x5d, 0x32, 0x6a, 0x97, 0x97 +.byte 0x63, 0x13, 0xdb, 0xc9, 0xdb, 0x79, 0x36, 0x7b, 0x85, 0x3a, 0x4a, 0xc5, 0x52, 0x89, 0xf9, 0x24 +.byte 0xe7, 0x9d, 0x77, 0xa9, 0x82, 0xff, 0x55, 0x1c, 0xa5, 0x71, 0x69, 0x2b, 0xd1, 0x02, 0x24, 0xf2 +.byte 0xb3, 0x26, 0xd4, 0x6b, 0xda, 0x04, 0x55, 0xe5, 0xc1, 0x0a, 0xc7, 0x6d, 0x30, 0x37, 0x90, 0x2a +.byte 0xe4, 0x9e, 0x14, 0x33, 0x5e, 0x16, 0x17, 0x55, 0xc5, 0x5b, 0xb5, 0xcb, 0x34, 0x89, 0x92, 0xf1 +.byte 0x9d, 0x26, 0x8f, 0xa1, 0x07, 0xd4, 0xc6, 0xb2, 0x78, 0x50, 0xdb, 0x0c, 0x0c, 0x0b, 0x7c, 0x0b +.byte 0x8c, 0x41, 0xd7, 0xb9, 0xe9, 0xdd, 0x8c, 0x88, 0xf7, 0xa3, 0x4d, 0xb2, 0x32, 0xcc, 0xd8, 0x17 +.byte 0xda, 0xcd, 0xb7, 0xce, 0x66, 0x9d, 0xd4, 0xfd, 0x5e, 0xff, 0xbd, 0x97, 0x3e, 0x29, 0x75, 0xe7 +.byte 0x7e, 0xa7, 0x62, 0x58, 0xaf, 0x25, 0x34, 0xa5, 0x41, 0xc7, 0x3d, 0xbc, 0x0d, 0x50, 0xca, 0x03 +.byte 0x03, 0x0f, 0x08, 0x5a, 0x1f, 0x95, 0x73, 0x78, 0x62, 0xbf, 0xaf, 0x72, 0x14, 0x69, 0x0e, 0xa5 +.byte 0xe5, 0x03, 0x0e, 0x78, 0x8e, 0x26, 0x28, 0x42, 0xf0, 0x07, 0x0b, 0x62, 0x20, 0x10, 0x67, 0x39 +.byte 0x46, 0xfa, 0xa9, 0x03, 0xcc, 0x04, 0x38, 0x7a, 0x66, 0xef, 0x20, 0x83, 0xb5, 0x8c, 0x4a, 0x56 +.byte 0x8e, 0x91, 0x00, 0xfc, 0x8e, 0x5c, 0x82, 0xde, 0x88, 0xa0, 0xc3, 0xe2, 0x68, 0x6e, 0x7d, 0x8d +.byte 0xef, 0x3c, 0xdd, 0x65, 0xf4, 0x5d, 0xac, 0x51, 0xef, 0x24, 0x80, 0xae, 0xaa, 0x56, 0x97, 0x6f +.byte 0xf9, 0xad, 0x7d, 0xda, 0x61, 0x3f, 0x98, 0x77, 0x3c, 0xa5, 0x91, 0xb6, 0x1c, 0x8c, 0x26, 0xda +.byte 0x65, 0xa2, 0x09, 0x6d, 0xc1, 0xe2, 0x54, 0xe3, 0xb9, 0xca, 0x4c, 0x4c, 0x80, 0x8f, 0x77, 0x7b +.byte 0x60, 0x9a, 0x1e, 0xdf, 0xb6, 0xf2, 0x48, 0x1e, 0x0e, 0xba, 0x4e, 0x54, 0x6d, 0x98, 0xe0, 0xe1 +.byte 0xa2, 0x1a, 0xa2, 0x77, 0x50, 0xcf, 0xc4, 0x63, 0x92, 0xec, 0x47, 0x19, 0x9d, 0xeb, 0xe6, 0x6b +.byte 0xce, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x78, 0x00, 0x30, 0x45, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x41, 0x66, 0x66, 0x69, 0x72 +.byte 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75, 0x6d, 0x20, 0x45 +.byte 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x0d, 0x30, 0x5e, 0x1b, 0x15, 0x9d +.byte 0x03, 0xd0, 0xa1, 0x79, 0x35, 0xb7, 0x3a, 0x3c, 0x92, 0x7a, 0xca, 0x15, 0x1c, 0xcd, 0x62, 0xf3 +.byte 0x9c, 0x26, 0x5c, 0x07, 0x3d, 0xe5, 0x54, 0xfa, 0xa3, 0xd6, 0xcc, 0x12, 0xea, 0xf4, 0x14, 0x5f +.byte 0xe8, 0x8e, 0x19, 0xab, 0x2f, 0x2e, 0x48, 0xe6, 0xac, 0x18, 0x43, 0x78, 0xac, 0xd0, 0x37, 0xc3 +.byte 0xbd, 0xb2, 0xcd, 0x2c, 0xe6, 0x47, 0xe2, 0x1a, 0xe6, 0x63, 0xb8, 0x3d, 0x2e, 0x2f, 0x78, 0xc4 +.byte 0x4f, 0xdb, 0xf4, 0x0f, 0xa4, 0x68, 0x4c, 0x55, 0x72, 0x6b, 0x95, 0x1d, 0x4e, 0x18, 0x42, 0x95 +.byte 0x78, 0xcc, 0x37, 0x3c, 0x91, 0xe2, 0x9b, 0x65, 0x2b, 0x29, 0x48, 0x00, 0x78, 0x00, 0x30, 0x46 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x45, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 +.byte 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x9c, 0x0e +.byte 0xb1, 0xcf, 0xb7, 0xe8, 0x9e, 0x52, 0x77, 0x75, 0x34, 0xfa, 0xa5, 0x46, 0xa7, 0xad, 0x32, 0x19 +.byte 0x32, 0xb4, 0x07, 0xa9, 0x27, 0xca, 0x94, 0xbb, 0x0c, 0xd2, 0x0a, 0x10, 0xc7, 0xda, 0x89, 0xb0 +.byte 0x97, 0x0c, 0x70, 0x13, 0x09, 0x01, 0x8e, 0xd8, 0xea, 0x47, 0xea, 0xbe, 0xb2, 0x80, 0x2b, 0xcd +.byte 0xfc, 0x28, 0x0d, 0xdb, 0xac, 0xbc, 0xa4, 0x86, 0x37, 0xed, 0x70, 0x08, 0x00, 0x75, 0xea, 0x93 +.byte 0x0b, 0x7b, 0x2e, 0x52, 0x9c, 0x23, 0x68, 0x23, 0x06, 0x43, 0xec, 0x92, 0x2f, 0x53, 0x84, 0xdb +.byte 0xfb, 0x47, 0x14, 0x07, 0xe8, 0x5f, 0x94, 0x67, 0x5d, 0xc9, 0x7a, 0x81, 0x3c, 0x20, 0x48, 0x00 +.byte 0x26, 0x02, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42 +.byte 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30, 0x1a +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xac, 0xac, 0x74, 0x32, 0xe8 +.byte 0xb3, 0x65, 0xe5, 0xba, 0xed, 0x43, 0x26, 0x1d, 0xa6, 0x89, 0x0d, 0x45, 0xba, 0x29, 0x88, 0xb2 +.byte 0xa4, 0x1d, 0x63, 0xdd, 0xd3, 0xc1, 0x2c, 0x09, 0x57, 0x89, 0x39, 0xa1, 0x55, 0xe9, 0x67, 0x34 +.byte 0x77, 0x0c, 0x6e, 0xe4, 0x55, 0x1d, 0x52, 0x25, 0xd2, 0x13, 0x6b, 0x5e, 0xe1, 0x1d, 0xa9, 0xb7 +.byte 0x7d, 0x89, 0x32, 0x5f, 0x0d, 0x9e, 0x9f, 0x2c, 0x7a, 0x63, 0x60, 0x40, 0x1f, 0xa6, 0xb0, 0xb6 +.byte 0x78, 0x8f, 0x99, 0x54, 0x96, 0x08, 0x58, 0xae, 0xe4, 0x06, 0xbc, 0x62, 0x05, 0x02, 0x16, 0xbf +.byte 0xaf, 0xa8, 0x23, 0x03, 0xb6, 0x94, 0x0f, 0xbc, 0x6e, 0x6c, 0xc2, 0xcb, 0xd5, 0xa6, 0xbb, 0x0c +.byte 0xe9, 0xf6, 0xc1, 0x02, 0xfb, 0x21, 0xde, 0x66, 0xdd, 0x17, 0xab, 0x74, 0x42, 0xef, 0xf0, 0x74 +.byte 0x2f, 0x25, 0xf4, 0xea, 0x6b, 0x55, 0x5b, 0x90, 0xdb, 0x9d, 0xdf, 0x5e, 0x87, 0x0a, 0x40, 0xfb +.byte 0xad, 0x19, 0x6b, 0xfb, 0xf7, 0xca, 0x60, 0x88, 0xde, 0xda, 0xc1, 0x8f, 0xd6, 0xae, 0xd5, 0x7f +.byte 0xd4, 0x3c, 0x83, 0xee, 0xd7, 0x16, 0x4c, 0x83, 0x45, 0x33, 0x6b, 0x27, 0xd0, 0x86, 0xd0, 0x1c +.byte 0x2d, 0x6b, 0xf3, 0xab, 0x7d, 0xf1, 0x85, 0xa9, 0xf5, 0x28, 0xd2, 0xad, 0xef, 0xf3, 0x84, 0x4b +.byte 0x1c, 0x87, 0xfc, 0x13, 0xa3, 0x3a, 0x72, 0xa2, 0x5a, 0x11, 0x2b, 0xd6, 0x27, 0x71, 0x27, 0xed +.byte 0x81, 0x2d, 0x6d, 0x66, 0x81, 0x92, 0x87, 0xb4, 0x1b, 0x58, 0x7a, 0xcc, 0x3f, 0x0a, 0xfa, 0x46 +.byte 0x4f, 0x4d, 0x78, 0x5c, 0xf8, 0x2b, 0x48, 0xe3, 0x04, 0x84, 0xcb, 0x5d, 0xf6, 0xb4, 0x6a, 0xb3 +.byte 0x65, 0xfc, 0x42, 0x9e, 0x51, 0x26, 0x23, 0x20, 0xcb, 0x3d, 0x14, 0xf9, 0x81, 0xed, 0x65, 0x16 +.byte 0x00, 0x4f, 0x1a, 0x64, 0x97, 0x66, 0x08, 0xcf, 0x8c, 0x7b, 0xe3, 0x2b, 0xc0, 0x9d, 0xf9, 0x14 +.byte 0xf2, 0x1b, 0xf1, 0x56, 0x6a, 0x16, 0xbf, 0x2c, 0x85, 0x85, 0xcd, 0x78, 0x38, 0x9a, 0xeb, 0x42 +.byte 0x6a, 0x02, 0x34, 0x18, 0x83, 0x17, 0x4e, 0x94, 0x56, 0xf8, 0xb6, 0x82, 0xb5, 0xf3, 0x96, 0xdd +.byte 0x3d, 0xf3, 0xbe, 0x7f, 0x20, 0x77, 0x3e, 0x7b, 0x19, 0x23, 0x6b, 0x2c, 0xd4, 0x72, 0x73, 0x43 +.byte 0x57, 0x7d, 0xe0, 0xf8, 0xd7, 0x69, 0x4f, 0x17, 0x36, 0x04, 0xf9, 0xc0, 0x90, 0x60, 0x37, 0x45 +.byte 0xde, 0xe6, 0x0c, 0xd8, 0x74, 0x8d, 0xae, 0x9c, 0xa2, 0x6d, 0x74, 0x5d, 0x42, 0xbe, 0x06, 0xf5 +.byte 0xd9, 0x64, 0x6e, 0x02, 0x10, 0xac, 0x89, 0xb0, 0x4c, 0x3b, 0x07, 0x4d, 0x40, 0x7e, 0x24, 0xc5 +.byte 0x8a, 0x98, 0x82, 0x79, 0x8e, 0xa4, 0xa7, 0x82, 0x20, 0x8d, 0x23, 0xfa, 0x27, 0x71, 0xc9, 0xdf +.byte 0xc6, 0x41, 0x74, 0xa0, 0x4d, 0xf6, 0x91, 0x16, 0xdc, 0x46, 0x8c, 0x5f, 0x29, 0x63, 0x31, 0x59 +.byte 0x71, 0x0c, 0xd8, 0x6f, 0xc2, 0xb6, 0x32, 0x7d, 0xfb, 0xe6, 0x5d, 0x53, 0xa6, 0x7e, 0x15, 0xfc +.byte 0xbb, 0x75, 0x7c, 0x5d, 0xec, 0xf8, 0xf6, 0x17, 0x1c, 0xec, 0xc7, 0x6b, 0x19, 0xcb, 0xf3, 0x7b +.byte 0xf0, 0x2b, 0x07, 0xa5, 0xd9, 0x6c, 0x79, 0x54, 0x76, 0x6c, 0x9d, 0x1c, 0xa6, 0x6e, 0x0e, 0xe9 +.byte 0x79, 0x0c, 0xa8, 0x23, 0x6a, 0xa3, 0xdf, 0x1b, 0x30, 0x31, 0x9f, 0xb1, 0x54, 0x7b, 0xfe, 0x6a +.byte 0xcb, 0x66, 0xaa, 0xdc, 0x65, 0xd0, 0xa2, 0x9e, 0x4a, 0x9a, 0x07, 0x21, 0x6b, 0x81, 0x8f, 0xdb +.byte 0xc4, 0x59, 0xfa, 0xde, 0x22, 0xc0, 0x04, 0x9c, 0xe3, 0xaa, 0x5b, 0x36, 0x93, 0xe8, 0x3d, 0xbd +.byte 0x7a, 0xa1, 0x9d, 0x0b, 0x76, 0xb1, 0x0b, 0xc7, 0x9d, 0xfd, 0xcf, 0x98, 0xa8, 0x06, 0xc2, 0xf8 +.byte 0x2a, 0xa3, 0xa1, 0x83, 0xa0, 0xb7, 0x25, 0x72, 0xa5, 0x02, 0xe3, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e +.byte 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x1c, 0x55, 0x43, 0x41, 0x20, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x56, 0x61 +.byte 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa9, 0x09 +.byte 0x07, 0x28, 0x13, 0x02, 0xb0, 0x99, 0xe0, 0x64, 0xaa, 0x1e, 0x43, 0x16, 0x7a, 0x73, 0xb1, 0x91 +.byte 0xa0, 0x75, 0x3e, 0xa8, 0xfa, 0xe3, 0x38, 0x00, 0x7a, 0xec, 0x89, 0x6a, 0x20, 0x0f, 0x8b, 0xc5 +.byte 0xb0, 0x9b, 0x33, 0x03, 0x5a, 0x86, 0xc6, 0x58, 0x86, 0xd5, 0xc1, 0x85, 0xbb, 0x4f, 0xc6, 0x9c +.byte 0x40, 0x4d, 0xca, 0xbe, 0xee, 0x69, 0x96, 0xb8, 0xad, 0x81, 0x30, 0x9a, 0x7c, 0x92, 0x05, 0xeb +.byte 0x05, 0x2b, 0x9a, 0x48, 0xd0, 0xb8, 0x76, 0x3e, 0x96, 0xc8, 0x20, 0xbb, 0xd2, 0xb0, 0xf1, 0x8f +.byte 0xd8, 0xac, 0x45, 0x46, 0xff, 0xaa, 0x67, 0x60, 0xb4, 0x77, 0x7e, 0x6a, 0x1f, 0x3c, 0x1a, 0x52 +.byte 0x7a, 0x04, 0x3d, 0x07, 0x3c, 0x85, 0x0d, 0x84, 0xd0, 0x1f, 0x76, 0x0a, 0xf7, 0x6a, 0x14, 0xdf +.byte 0x72, 0xe3, 0x34, 0x7c, 0x57, 0x4e, 0x56, 0x01, 0x3e, 0x79, 0xf1, 0xaa, 0x29, 0x3b, 0x6c, 0xfa +.byte 0xf8, 0x8f, 0x6d, 0x4d, 0xc8, 0x35, 0xdf, 0xae, 0xeb, 0xdc, 0x24, 0xee, 0x79, 0x45, 0xa7, 0x85 +.byte 0xb6, 0x05, 0x88, 0xde, 0x88, 0x5d, 0x25, 0x7c, 0x97, 0x64, 0x67, 0x09, 0xd9, 0xbf, 0x5a, 0x15 +.byte 0x05, 0x86, 0xf3, 0x09, 0x1e, 0xec, 0x58, 0x32, 0x33, 0x11, 0xf3, 0x77, 0x64, 0xb0, 0x76, 0x1f +.byte 0xe4, 0x10, 0x35, 0x17, 0x1b, 0xf2, 0x0e, 0xb1, 0x6c, 0xa4, 0x2a, 0xa3, 0x73, 0xfc, 0x09, 0x1f +.byte 0x1e, 0x32, 0x19, 0x53, 0x11, 0xe7, 0xd9, 0xb3, 0x2c, 0x2e, 0x76, 0x2e, 0xa1, 0xa3, 0xde, 0x7e +.byte 0x6a, 0x88, 0x09, 0xe8, 0xf2, 0x07, 0x8a, 0xf8, 0xb2, 0xcd, 0x10, 0xe7, 0xe2, 0x73, 0x40, 0x93 +.byte 0xbb, 0x08, 0xd1, 0x3f, 0xe1, 0xfc, 0x0b, 0x94, 0xb3, 0x25, 0xef, 0x7c, 0xa6, 0xd7, 0xd1, 0xaf +.byte 0x9f, 0xff, 0x96, 0x9a, 0xf5, 0x91, 0x7b, 0x98, 0x0b, 0x77, 0xd4, 0x7e, 0xe8, 0x07, 0xd2, 0x62 +.byte 0xb5, 0x95, 0x39, 0xe3, 0xf3, 0xf1, 0x6d, 0x0f, 0x0e, 0x65, 0x84, 0x8a, 0x63, 0x54, 0xc5, 0x80 +.byte 0xb6, 0xe0, 0x9e, 0x4b, 0x7d, 0x47, 0x26, 0xa7, 0x01, 0x08, 0x5d, 0xd1, 0x88, 0x9e, 0xd7, 0xc3 +.byte 0x32, 0x44, 0xfa, 0x82, 0x4a, 0x0a, 0x68, 0x54, 0x7f, 0x38, 0x53, 0x03, 0xcc, 0xa4, 0x00, 0x33 +.byte 0x64, 0x51, 0x59, 0x0b, 0xa3, 0x82, 0x91, 0x7a, 0x5e, 0xec, 0x16, 0xc2, 0xf3, 0x2a, 0xe6, 0x62 +.byte 0xda, 0x2a, 0xdb, 0x59, 0x62, 0x10, 0x25, 0x4a, 0x2a, 0x81, 0x0b, 0x47, 0x07, 0x43, 0x06, 0x70 +.byte 0x87, 0xd2, 0xfa, 0x93, 0x11, 0x29, 0x7a, 0x48, 0x4d, 0xeb, 0x94, 0xc7, 0x70, 0x4d, 0xaf, 0x67 +.byte 0xd5, 0x51, 0xb1, 0x80, 0x20, 0x01, 0x01, 0xb4, 0x7a, 0x08, 0xa6, 0x90, 0x7f, 0x4e, 0xe0, 0xef +.byte 0x07, 0x41, 0x87, 0xaf, 0x6a, 0xa5, 0x5e, 0x8b, 0xfb, 0xcf, 0x50, 0xb2, 0x9a, 0x54, 0xaf, 0xc3 +.byte 0x89, 0xba, 0x58, 0x2d, 0xf5, 0x30, 0x98, 0xb1, 0x36, 0x72, 0x39, 0x7e, 0x49, 0x04, 0xfd, 0x29 +.byte 0xa7, 0x4c, 0x79, 0xe4, 0x05, 0x57, 0xdb, 0x94, 0xb9, 0x16, 0x53, 0x8d, 0x46, 0xb3, 0x1d, 0x95 +.byte 0x61, 0x57, 0x56, 0x7f, 0xaf, 0xf0, 0x16, 0x5b, 0x61, 0x58, 0x6f, 0x36, 0x50, 0x11, 0x0b, 0xd8 +.byte 0xac, 0x2b, 0x95, 0x16, 0x1a, 0x0e, 0x1f, 0x08, 0xcd, 0x36, 0x34, 0x65, 0x10, 0x62, 0x66, 0xd5 +.byte 0x80, 0x5f, 0x14, 0x20, 0x5f, 0x2d, 0x0c, 0xa0, 0x78, 0x0a, 0x68, 0xd6, 0x2c, 0xd7, 0xe9, 0x6f +.byte 0x2b, 0xd2, 0x4a, 0x05, 0x93, 0xfc, 0x9e, 0x6f, 0x6b, 0x67, 0xff, 0x88, 0xf1, 0x4e, 0xa5, 0x69 +.byte 0x4a, 0x52, 0x37, 0x05, 0xea, 0xc6, 0x16, 0x8d, 0xd2, 0xc4, 0x99, 0xd1, 0x82, 0x2b, 0x3b, 0xba +.byte 0x35, 0x75, 0xf7, 0x51, 0x51, 0x58, 0xf3, 0xc8, 0x07, 0xdd, 0xe4, 0xb4, 0x03, 0x7f, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c +.byte 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x76 +.byte 0x54, 0x72, 0x75, 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x65, 0x50, 0x4a, 0xae, 0x8c, 0x79, 0x96, 0x4a +.byte 0xaa, 0x1c, 0x08, 0xc3, 0xa3, 0xa2, 0xcd, 0xfe, 0x59, 0x56, 0x41, 0x77, 0xfd, 0x26, 0x94, 0x42 +.byte 0xbb, 0x1d, 0xcd, 0x08, 0xdb, 0x73, 0xb2, 0x5b, 0x75, 0xf3, 0xcf, 0x9c, 0x4e, 0x82, 0xf4, 0xbf +.byte 0xf8, 0x61, 0x26, 0x85, 0x6c, 0xd6, 0x85, 0x5b, 0x72, 0x70, 0xd2, 0xfd, 0xdb, 0x62, 0xb4, 0xdf +.byte 0x53, 0x8b, 0xbd, 0xb1, 0x44, 0x58, 0x62, 0x42, 0x09, 0xc7, 0xfa, 0x7f, 0x5b, 0x10, 0xe7, 0xfe +.byte 0x40, 0xfd, 0xc0, 0xd8, 0xc3, 0x2b, 0x32, 0xe7, 0x70, 0xa6, 0xb7, 0xa6, 0x20, 0x55, 0x1d, 0x7b +.byte 0x80, 0x5d, 0x4b, 0x8f, 0x67, 0x4c, 0xf1, 0x10, 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31 +.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x52, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x11, 0x02, 0x8b, 0x1e, 0xe3, 0xa1, 0x77, 0x9b, 0x3b +.byte 0xdc, 0xbf, 0x94, 0x3e, 0xb7, 0x95, 0xa7, 0x40, 0x3c, 0xa1, 0xfd, 0x82, 0xf9, 0x7d, 0x32, 0x06 +.byte 0x82, 0x71, 0xf6, 0xf6, 0x8c, 0x7f, 0xfb, 0xe8, 0xdb, 0xbc, 0x6a, 0x2e, 0x97, 0x97, 0xa3, 0x8c +.byte 0x4b, 0xf9, 0x2b, 0xf6, 0xb1, 0xf9, 0xce, 0x84, 0x1d, 0xb1, 0xf9, 0xc5, 0x97, 0xde, 0xef, 0xb9 +.byte 0xf2, 0xa3, 0xe9, 0xbc, 0x12, 0x89, 0x5e, 0xa7, 0xaa, 0x52, 0xab, 0xf8, 0x23, 0x27, 0xcb, 0xa4 +.byte 0xb1, 0x9c, 0x63, 0xdb, 0xd7, 0x99, 0x7e, 0xf0, 0x0a, 0x5e, 0xeb, 0x68, 0xa6, 0xf4, 0xc6, 0x5a +.byte 0x47, 0x0d, 0x4d, 0x10, 0x33, 0xe3, 0x4e, 0xb1, 0x13, 0xa3, 0xc8, 0x18, 0x6c, 0x4b, 0xec, 0xfc +.byte 0x09, 0x90, 0xdf, 0x9d, 0x64, 0x29, 0x25, 0x23, 0x07, 0xa1, 0xb4, 0xd2, 0x3d, 0x2e, 0x60, 0xe0 +.byte 0xcf, 0xd2, 0x09, 0x87, 0xbb, 0xcd, 0x48, 0xf0, 0x4d, 0xc2, 0xc2, 0x7a, 0x88, 0x8a, 0xbb, 0xba +.byte 0xcf, 0x59, 0x19, 0xd6, 0xaf, 0x8f, 0xb0, 0x07, 0xb0, 0x9e, 0x31, 0xf1, 0x82, 0xc1, 0xc0, 0xdf +.byte 0x2e, 0xa6, 0x6d, 0x6c, 0x19, 0x0e, 0xb5, 0xd8, 0x7e, 0x26, 0x1a, 0x45, 0x03, 0x3d, 0xb0, 0x79 +.byte 0xa4, 0x94, 0x28, 0xad, 0x0f, 0x7f, 0x26, 0xe5, 0xa8, 0x08, 0xfe, 0x96, 0xe8, 0x3c, 0x68, 0x94 +.byte 0x53, 0xee, 0x83, 0x3a, 0x88, 0x2b, 0x15, 0x96, 0x09, 0xb2, 0xe0, 0x7a, 0x8c, 0x2e, 0x75, 0xd6 +.byte 0x9c, 0xeb, 0xa7, 0x56, 0x64, 0x8f, 0x96, 0x4f, 0x68, 0xae, 0x3d, 0x97, 0xc2, 0x84, 0x8f, 0xc0 +.byte 0xbc, 0x40, 0xc0, 0x0b, 0x5c, 0xbd, 0xf6, 0x87, 0xb3, 0x35, 0x6c, 0xac, 0x18, 0x50, 0x7f, 0x84 +.byte 0xe0, 0x4c, 0xcd, 0x92, 0xd3, 0x20, 0xe9, 0x33, 0xbc, 0x52, 0x99, 0xaf, 0x32, 0xb5, 0x29, 0xb3 +.byte 0x25, 0x2a, 0xb4, 0x48, 0xf9, 0x72, 0xe1, 0xca, 0x64, 0xf7, 0xe6, 0x82, 0x10, 0x8d, 0xe8, 0x9d +.byte 0xc2, 0x8a, 0x88, 0xfa, 0x38, 0x66, 0x8a, 0xfc, 0x63, 0xf9, 0x01, 0xf9, 0x78, 0xfd, 0x7b, 0x5c +.byte 0x77, 0xfa, 0x76, 0x87, 0xfa, 0xec, 0xdf, 0xb1, 0x0e, 0x79, 0x95, 0x57, 0xb4, 0xbd, 0x26, 0xef +.byte 0xd6, 0x01, 0xd1, 0xeb, 0x16, 0x0a, 0xbb, 0x8e, 0x0b, 0xb5, 0xc5, 0xc5, 0x8a, 0x55, 0xab, 0xd3 +.byte 0xac, 0xea, 0x91, 0x4b, 0x29, 0xcc, 0x19, 0xa4, 0x32, 0x25, 0x4e, 0x2a, 0xf1, 0x65, 0x44, 0xd0 +.byte 0x02, 0xce, 0xaa, 0xce, 0x49, 0xb4, 0xea, 0x9f, 0x7c, 0x83, 0xb0, 0x40, 0x7b, 0xe7, 0x43, 0xab +.byte 0xa7, 0x6c, 0xa3, 0x8f, 0x7d, 0x89, 0x81, 0xfa, 0x4c, 0xa5, 0xff, 0xd5, 0x8e, 0xc3, 0xce, 0x4b +.byte 0xe0, 0xb5, 0xd8, 0xb3, 0x8e, 0x45, 0xcf, 0x76, 0xc0, 0xed, 0x40, 0x2b, 0xfd, 0x53, 0x0f, 0xb0 +.byte 0xa7, 0xd5, 0x3b, 0x0d, 0xb1, 0x8a, 0xa2, 0x03, 0xde, 0x31, 0xad, 0xcc, 0x77, 0xea, 0x6f, 0x7b +.byte 0x3e, 0xd6, 0xdf, 0x91, 0x22, 0x12, 0xe6, 0xbe, 0xfa, 0xd8, 0x32, 0xfc, 0x10, 0x63, 0x14, 0x51 +.byte 0x72, 0xde, 0x5d, 0xd6, 0x16, 0x93, 0xbd, 0x29, 0x68, 0x33, 0xef, 0x3a, 0x66, 0xec, 0x07, 0x8a +.byte 0x26, 0xdf, 0x13, 0xd7, 0x57, 0x65, 0x78, 0x27, 0xde, 0x5e, 0x49, 0x14, 0x00, 0xa2, 0x00, 0x7f +.byte 0x9a, 0xa8, 0x21, 0xb6, 0xa9, 0xb1, 0x95, 0xb0, 0xa5, 0xb9, 0x0d, 0x16, 0x11, 0xda, 0xc7, 0x6c +.byte 0x48, 0x3c, 0x40, 0xe0, 0x7e, 0x0d, 0x5a, 0xcd, 0x56, 0x3c, 0xd1, 0x97, 0x05, 0xb9, 0xcb, 0x4b +.byte 0xed, 0x39, 0x4b, 0x9c, 0xc4, 0x3f, 0xd2, 0x55, 0x13, 0x6e, 0x24, 0xb0, 0xd6, 0x71, 0xfa, 0xf4 +.byte 0xc1, 0xba, 0xcc, 0xed, 0x1b, 0xf5, 0xfe, 0x81, 0x41, 0xd8, 0x00, 0x98, 0x3d, 0x3a, 0xc8, 0xae +.byte 0x7a, 0x98, 0x37, 0x18, 0x05, 0x95, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x26, 0x02, 0x30 +.byte 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c +.byte 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xce, 0xde, 0xfd, 0xa6, 0xfb, 0xec, 0xec +.byte 0x14, 0x34, 0x3c, 0x07, 0x06, 0x5a, 0x6c, 0x59, 0xf7, 0x19, 0x35, 0xdd, 0xf7, 0xc1, 0x9d, 0x55 +.byte 0xaa, 0xd3, 0xcd, 0x3b, 0xa4, 0x93, 0x72, 0xef, 0x0a, 0xfa, 0x6d, 0x9d, 0xf6, 0xf0, 0x85, 0x80 +.byte 0x5b, 0xa1, 0x48, 0x52, 0x9f, 0x39, 0xc5, 0xb7, 0xee, 0x28, 0xac, 0xef, 0xcb, 0x76, 0x68, 0x14 +.byte 0xb9, 0xdf, 0xad, 0x01, 0x6c, 0x99, 0x1f, 0xc4, 0x22, 0x1d, 0x9f, 0xfe, 0x72, 0x77, 0xe0, 0x2c +.byte 0x5b, 0xaf, 0xe4, 0x04, 0xbf, 0x4f, 0x72, 0xa0, 0x1a, 0x34, 0x98, 0xe8, 0x39, 0x68, 0xec, 0x95 +.byte 0x25, 0x7b, 0x76, 0xa1, 0xe6, 0x69, 0xb9, 0x85, 0x19, 0xbd, 0x89, 0x8c, 0xfe, 0xad, 0xed, 0x36 +.byte 0xea, 0x73, 0xbc, 0xff, 0x83, 0xe2, 0xcb, 0x7d, 0xc1, 0xd2, 0xce, 0x4a, 0xb3, 0x8d, 0x05, 0x9e +.byte 0x8b, 0x49, 0x93, 0xdf, 0xc1, 0x5b, 0xd0, 0x6e, 0x5e, 0xf0, 0x2e, 0x30, 0x2e, 0x82, 0xfc, 0xfa +.byte 0xbc, 0xb4, 0x17, 0x0a, 0x48, 0xe5, 0x88, 0x9b, 0xc5, 0x9b, 0x6b, 0xde, 0xb0, 0xca, 0xb4, 0x03 +.byte 0xf0, 0xda, 0xf4, 0x90, 0xb8, 0x65, 0x64, 0xf7, 0x5c, 0x4c, 0xad, 0xe8, 0x7e, 0x66, 0x5e, 0x99 +.byte 0xd7, 0xb8, 0xc2, 0x3e, 0xc8, 0xd0, 0x13, 0x9d, 0xad, 0xee, 0xe4, 0x45, 0x7b, 0x89, 0x55, 0xf7 +.byte 0x8a, 0x1f, 0x62, 0x52, 0x84, 0x12, 0xb3, 0xc2, 0x40, 0x97, 0xe3, 0x8a, 0x1f, 0x47, 0x91, 0xa6 +.byte 0x74, 0x5a, 0xd2, 0xf8, 0xb1, 0x63, 0x28, 0x10, 0xb8, 0xb3, 0x09, 0xb8, 0x56, 0x77, 0x40, 0xa2 +.byte 0x26, 0x98, 0x79, 0xc6, 0xfe, 0xdf, 0x25, 0xee, 0x3e, 0xe5, 0xa0, 0x7f, 0xd4, 0x61, 0x0f, 0x51 +.byte 0x4b, 0x3c, 0x3f, 0x8c, 0xda, 0xe1, 0x70, 0x74, 0xd8, 0xc2, 0x68, 0xa1, 0xf9, 0xc1, 0x0c, 0xe9 +.byte 0xa1, 0xe2, 0x7f, 0xbb, 0x55, 0x3c, 0x76, 0x06, 0xee, 0x6a, 0x4e, 0xcc, 0x92, 0x88, 0x30, 0x4d +.byte 0x9a, 0xbd, 0x4f, 0x0b, 0x48, 0x9a, 0x84, 0xb5, 0x98, 0xa3, 0xd5, 0xfb, 0x73, 0xc1, 0x57, 0x61 +.byte 0xdd, 0x28, 0x56, 0x75, 0x13, 0xae, 0x87, 0x8e, 0xe7, 0x0c, 0x51, 0x09, 0x10, 0x75, 0x88, 0x4c +.byte 0xbc, 0x8d, 0xf9, 0x7b, 0x3c, 0xd4, 0x22, 0x48, 0x1f, 0x2a, 0xdc, 0xeb, 0x6b, 0xbb, 0x44, 0xb1 +.byte 0xcb, 0x33, 0x71, 0x32, 0x46, 0xaf, 0xad, 0x4a, 0xf1, 0x8c, 0xe8, 0x74, 0x3a, 0xac, 0xe7, 0x1a +.byte 0x22, 0x73, 0x80, 0xd2, 0x30, 0xf7, 0x25, 0x42, 0xc7, 0x22, 0x3b, 0x3b, 0x12, 0xad, 0x96, 0x2e +.byte 0xc6, 0xc3, 0x76, 0x07, 0xaa, 0x20, 0xb7, 0x35, 0x49, 0x57, 0xe9, 0x92, 0x49, 0xe8, 0x76, 0x16 +.byte 0x72, 0x31, 0x67, 0x2b, 0x96, 0x7e, 0x8a, 0xa3, 0xc7, 0x94, 0x56, 0x22, 0xbf, 0x6a, 0x4b, 0x7e +.byte 0x01, 0x21, 0xb2, 0x23, 0x32, 0xdf, 0xe4, 0x9a, 0x44, 0x6d, 0x59, 0x5b, 0x5d, 0xf5, 0x00, 0xa0 +.byte 0x1c, 0x9b, 0xc6, 0x78, 0x97, 0x8d, 0x90, 0xff, 0x9b, 0xc8, 0xaa, 0xb4, 0xaf, 0x11, 0x51, 0x39 +.byte 0x5e, 0xd9, 0xfb, 0x67, 0xad, 0xd5, 0x5b, 0x11, 0x9d, 0x32, 0x9a, 0x1b, 0xbd, 0xd5, 0xba, 0x5b +.byte 0xa5, 0xc9, 0xcb, 0x25, 0x69, 0x53, 0x55, 0x27, 0x5c, 0xe0, 0xca, 0x36, 0xcb, 0x88, 0x61, 0xfb +.byte 0x1e, 0xb7, 0xd0, 0xcb, 0xee, 0x16, 0xfb, 0xd3, 0xa6, 0x4c, 0xde, 0x92, 0xa5, 0xd4, 0xe2, 0xdf +.byte 0xf5, 0x06, 0x54, 0xde, 0x2e, 0x9d, 0x4b, 0xb4, 0x93, 0x30, 0xaa, 0x81, 0xce, 0xdd, 0x1a, 0xdc +.byte 0x51, 0x73, 0x0d, 0x4f, 0x70, 0xe9, 0xe5, 0xb6, 0x16, 0x21, 0x19, 0x79, 0xb2, 0xe6, 0x89, 0x0b +.byte 0x75, 0x64, 0xca, 0xd5, 0xab, 0xbc, 0x09, 0xc1, 0x18, 0xa1, 0xff, 0xd4, 0x54, 0xa1, 0x85, 0x3c +.byte 0xfd, 0x14, 0x24, 0x03, 0xb2, 0x87, 0xd3, 0xa4, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00 +.byte 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67 +.byte 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65 +.byte 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b +.byte 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06 +.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 +.byte 0x62, 0x00, 0x04, 0x1f, 0x4f, 0x33, 0x87, 0x33, 0x29, 0x8a, 0xa1, 0x84, 0xde, 0xcb, 0xc7, 0x21 +.byte 0x58, 0x41, 0x89, 0xea, 0x56, 0x9d, 0x2b, 0x4b, 0x85, 0xc6, 0x1d, 0x4c, 0x27, 0xbc, 0x7f, 0x26 +.byte 0x51, 0x72, 0x6f, 0xe2, 0x9f, 0xd6, 0xa3, 0xca, 0xcc, 0x45, 0x14, 0x46, 0x8b, 0xad, 0xef, 0x7e +.byte 0x86, 0x8c, 0xec, 0xb1, 0x7e, 0x2f, 0xff, 0xa9, 0x71, 0x9d, 0x18, 0x84, 0x45, 0x04, 0x41, 0x55 +.byte 0x6e, 0x2b, 0xea, 0x26, 0x7f, 0xbb, 0x90, 0x01, 0xe3, 0x4b, 0x19, 0xba, 0xe4, 0x54, 0x96, 0x45 +.byte 0x09, 0xb1, 0xd5, 0x6c, 0x91, 0x44, 0xad, 0x84, 0x13, 0x8e, 0x9a, 0x8c, 0x0d, 0x80, 0x0c, 0x32 +.byte 0xf6, 0xe0, 0x27, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65 +.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf3, 0x74, 0x73, 0xa7, 0x68, 0x8b, 0x60, 0xae +.byte 0x43, 0xb8, 0x35, 0xc5, 0x81, 0x30, 0x7b, 0x4b, 0x49, 0x9d, 0xfb, 0xc1, 0x61, 0xce, 0xe6, 0xde +.byte 0x46, 0xbd, 0x6b, 0xd5, 0x61, 0x18, 0x35, 0xae, 0x40, 0xdd, 0x73, 0xf7, 0x89, 0x91, 0x30, 0x5a +.byte 0xeb, 0x3c, 0xee, 0x85, 0x7c, 0xa2, 0x40, 0x76, 0x3b, 0xa9, 0xc6, 0xb8, 0x47, 0xd8, 0x2a, 0xe7 +.byte 0x92, 0x91, 0x6a, 0x73, 0xe9, 0xb1, 0x72, 0x39, 0x9f, 0x29, 0x9f, 0xa2, 0x98, 0xd3, 0x5f, 0x5e +.byte 0x58, 0x86, 0x65, 0x0f, 0xa1, 0x84, 0x65, 0x06, 0xd1, 0xdc, 0x8b, 0xc9, 0xc7, 0x73, 0xc8, 0x8c +.byte 0x6a, 0x2f, 0xe5, 0xc4, 0xab, 0xd1, 0x1d, 0x8a, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c +.byte 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x31, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa0, 0xbe, 0x50, 0x10, 0x8e, 0xe9, 0xf2, 0x6c, 0x40 +.byte 0xb4, 0x04, 0x9c, 0x85, 0xb9, 0x31, 0xca, 0xdc, 0x2d, 0xe4, 0x11, 0xa9, 0x04, 0x3c, 0x1b, 0x55 +.byte 0xc1, 0xe7, 0x58, 0x30, 0x1d, 0x24, 0xb4, 0xc3, 0xef, 0x85, 0xde, 0x8c, 0x2c, 0xe1, 0xc1, 0x3d +.byte 0xdf, 0x82, 0xe6, 0x4f, 0xad, 0x47, 0x87, 0x6c, 0xec, 0x5b, 0x49, 0xc1, 0x4a, 0xd5, 0xbb, 0x8f +.byte 0xec, 0x87, 0xac, 0x7f, 0x82, 0x9a, 0x86, 0xec, 0x3d, 0x03, 0x99, 0x52, 0x01, 0xd2, 0x35, 0x9e +.byte 0xac, 0xda, 0xf0, 0x53, 0xc9, 0x66, 0x3c, 0xd4, 0xac, 0x02, 0x01, 0xda, 0x24, 0xd3, 0x3b, 0xa8 +.byte 0x02, 0x46, 0xaf, 0xa4, 0x1c, 0xe3, 0xf8, 0x73, 0x58, 0x76, 0xb7, 0xf6, 0x0e, 0x90, 0x0d, 0xb5 +.byte 0xf0, 0xcf, 0xcc, 0xfa, 0xf9, 0xc6, 0x4c, 0xe5, 0xc3, 0x86, 0x30, 0x0a, 0x8d, 0x17, 0x7e, 0x35 +.byte 0xeb, 0xc5, 0xdf, 0xbb, 0x0e, 0x9c, 0xc0, 0x8d, 0x87, 0xe3, 0x88, 0x38, 0x85, 0x67, 0xfa, 0x3e +.byte 0xc7, 0xab, 0xe0, 0x13, 0x9c, 0x05, 0x18, 0x98, 0xcf, 0x93, 0xf5, 0xb1, 0x92, 0xb4, 0xfc, 0x23 +.byte 0xd3, 0xcf, 0xd5, 0xc4, 0x27, 0x49, 0xe0, 0x9e, 0x3c, 0x9b, 0x08, 0xa3, 0x8b, 0x5d, 0x2a, 0x21 +.byte 0xe0, 0xfc, 0x39, 0xaa, 0x53, 0xda, 0x7d, 0x7e, 0xcf, 0x1a, 0x09, 0x53, 0xbc, 0x5d, 0x05, 0x04 +.byte 0xcf, 0xa1, 0x4a, 0x8f, 0x8b, 0x76, 0x82, 0x0d, 0xa1, 0xf8, 0xd2, 0xc7, 0x14, 0x77, 0x5b, 0x90 +.byte 0x36, 0x07, 0x81, 0x9b, 0x3e, 0x06, 0xfa, 0x52, 0x5e, 0x63, 0xc5, 0xa6, 0x00, 0xfe, 0xa5, 0xe9 +.byte 0x52, 0x1b, 0x52, 0xb5, 0x92, 0x39, 0x72, 0x03, 0x09, 0x62, 0xbd, 0xb0, 0x60, 0x16, 0x6e, 0xa6 +.byte 0xdd, 0x25, 0xc2, 0x03, 0x66, 0xdd, 0xf3, 0x04, 0xd1, 0x40, 0xe2, 0x4e, 0x8b, 0x86, 0xf4, 0x6f +.byte 0xe5, 0x83, 0xa0, 0x27, 0x84, 0x5e, 0x04, 0xc1, 0xf5, 0x90, 0xbd, 0x30, 0x3d, 0xc4, 0xef, 0xa8 +.byte 0x69, 0xbc, 0x38, 0x9b, 0xa4, 0xa4, 0x96, 0xd1, 0x62, 0xda, 0x69, 0xc0, 0x01, 0x96, 0xae, 0xcb +.byte 0xc4, 0x51, 0x34, 0xea, 0x0c, 0xaa, 0xff, 0x21, 0x8e, 0x59, 0x8f, 0x4a, 0x5c, 0xe4, 0x61, 0x9a +.byte 0xa7, 0xd2, 0xe9, 0x2a, 0x78, 0x8d, 0x51, 0x3d, 0x3a, 0x15, 0xee, 0xa2, 0x59, 0x8e, 0xa9, 0x5c +.byte 0xde, 0xc5, 0xf9, 0x90, 0x22, 0xe5, 0x88, 0x45, 0x71, 0xdd, 0x91, 0x99, 0x6c, 0x7a, 0x9f, 0x3d +.byte 0x3d, 0x98, 0x7c, 0x5e, 0xf6, 0xbe, 0x16, 0x68, 0xa0, 0x5e, 0xae, 0x0b, 0x23, 0xfc, 0x5a, 0x0f +.byte 0xaa, 0x22, 0x76, 0x2d, 0xc9, 0xa1, 0x10, 0x1d, 0xe4, 0xd3, 0x44, 0x23, 0x90, 0x88, 0x9f, 0xc6 +.byte 0x2a, 0xe6, 0xd7, 0xf5, 0x9a, 0xb3, 0x58, 0x1e, 0x2f, 0x30, 0x89, 0x08, 0x1b, 0x54, 0xa2, 0xb5 +.byte 0x98, 0x23, 0xec, 0x08, 0x77, 0x1c, 0x95, 0x5d, 0x61, 0xd1, 0xcb, 0x89, 0x9c, 0x5f, 0xa2, 0x4a +.byte 0x91, 0x9a, 0xef, 0x21, 0xaa, 0x49, 0x16, 0x08, 0xa8, 0xbd, 0x61, 0x28, 0x31, 0xc9, 0x74, 0xad +.byte 0x85, 0xf6, 0xd9, 0xc5, 0xb1, 0x8b, 0xd1, 0xe5, 0x10, 0x32, 0x4d, 0x5f, 0x8b, 0x20, 0x3a, 0x3c +.byte 0x49, 0x1f, 0x33, 0x85, 0x59, 0x0d, 0xdb, 0xcb, 0x09, 0x75, 0x43, 0x69, 0x73, 0xfb, 0x6b, 0x71 +.byte 0x7d, 0xf0, 0xdf, 0xc4, 0x4c, 0x7d, 0xc6, 0xa3, 0x2e, 0xc8, 0x95, 0x79, 0xcb, 0x73, 0xa2, 0x8e +.byte 0x4e, 0x4d, 0x24, 0xfb, 0x5e, 0xe4, 0x04, 0xbe, 0x72, 0x1b, 0xa6, 0x27, 0x2d, 0x49, 0x5a, 0x99 +.byte 0x7a, 0xd7, 0x5c, 0x09, 0x20, 0xb7, 0x7f, 0x94, 0xb9, 0x4f, 0xf1, 0x0d, 0x1c, 0x5e, 0x88, 0x42 +.byte 0x1b, 0x11, 0xb7, 0xe7, 0x91, 0xdb, 0x9e, 0x6c, 0xf4, 0x6a, 0xdf, 0x8c, 0x06, 0x98, 0x03, 0xad +.byte 0xcc, 0x28, 0xef, 0xa5, 0x47, 0xf3, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x26, 0x02 +.byte 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64 +.byte 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa1, 0xae, 0x25, 0xb2, 0x01 +.byte 0x18, 0xdc, 0x57, 0x88, 0x3f, 0x46, 0xeb, 0xf9, 0xaf, 0xe2, 0xeb, 0x23, 0x71, 0xe2, 0x9a, 0xd1 +.byte 0x61, 0x66, 0x21, 0x5f, 0xaa, 0xaf, 0x27, 0x51, 0xe5, 0x6e, 0x1b, 0x16, 0xd4, 0x2d, 0x7d, 0x50 +.byte 0xb0, 0x53, 0x77, 0xbd, 0x78, 0x3a, 0x60, 0xe2, 0x64, 0x02, 0x9b, 0x7c, 0x86, 0x9b, 0xd6, 0x1a +.byte 0x8e, 0xad, 0xff, 0x1f, 0x15, 0x7f, 0xd5, 0x95, 0x1e, 0x12, 0xcb, 0xe6, 0x14, 0x84, 0x04, 0xc1 +.byte 0xdf, 0x36, 0xb3, 0x16, 0x9f, 0x8a, 0xe3, 0xc9, 0xdb, 0x98, 0x34, 0xce, 0xd8, 0x33, 0x17, 0x28 +.byte 0x46, 0xfc, 0xa7, 0xc9, 0xf0, 0xd2, 0xb4, 0xd5, 0x4d, 0x09, 0x72, 0x49, 0xf9, 0xf2, 0x87, 0xe3 +.byte 0xa9, 0xda, 0x7d, 0xa1, 0x7d, 0x6b, 0xb2, 0x3a, 0x25, 0xa9, 0x6d, 0x52, 0x44, 0xac, 0xf8, 0xbe +.byte 0x6e, 0xfb, 0xdc, 0xa6, 0x73, 0x91, 0x90, 0x61, 0xa6, 0x03, 0x14, 0x20, 0xf2, 0xe7, 0x87, 0xa3 +.byte 0x88, 0xad, 0xad, 0xa0, 0x8c, 0xff, 0xa6, 0x0b, 0x25, 0x52, 0x25, 0xe7, 0x16, 0x01, 0xd5, 0xcb +.byte 0xb8, 0x35, 0x81, 0x0c, 0xa3, 0x3b, 0xf0, 0xe1, 0xe1, 0xfc, 0x5a, 0x5d, 0xce, 0x80, 0x71, 0x6d +.byte 0xf8, 0x49, 0xab, 0x3e, 0x3b, 0xba, 0xb8, 0xd7, 0x80, 0x01, 0xfb, 0xa5, 0xeb, 0x5b, 0xb3, 0xc5 +.byte 0x5e, 0x60, 0x2a, 0x31, 0xa0, 0xaf, 0x37, 0xe8, 0x20, 0x3a, 0x9f, 0xa8, 0x32, 0x2c, 0x0c, 0xcc +.byte 0x09, 0x1d, 0xd3, 0x9e, 0x8e, 0x5d, 0xbc, 0x4c, 0x98, 0xee, 0xc5, 0x1a, 0x68, 0x7b, 0xec, 0x53 +.byte 0xa6, 0xe9, 0x14, 0x35, 0xa3, 0xdf, 0xcd, 0x80, 0x9f, 0x0c, 0x48, 0xfb, 0x1c, 0xf4, 0xf1, 0xbf +.byte 0x4a, 0xb8, 0xfa, 0xd5, 0x8c, 0x71, 0x4a, 0xc7, 0x1f, 0xad, 0xfe, 0x41, 0x9a, 0xb3, 0x83, 0x5d +.byte 0xf2, 0x84, 0x56, 0xef, 0xa5, 0x57, 0x43, 0xce, 0x29, 0xad, 0x8c, 0xab, 0x55, 0xbf, 0xc4, 0xfb +.byte 0x5b, 0x01, 0xdd, 0x23, 0x21, 0xa1, 0x58, 0x00, 0x8e, 0xc3, 0xd0, 0x6a, 0x13, 0xed, 0x13, 0xe3 +.byte 0x12, 0x2b, 0x80, 0xdc, 0x67, 0xe6, 0x95, 0xb2, 0xcd, 0x1e, 0x22, 0x6e, 0x2a, 0xf8, 0x41, 0xd4 +.byte 0xf2, 0xca, 0x14, 0x07, 0x8d, 0x8a, 0x55, 0x12, 0xc6, 0x69, 0xf5, 0xb8, 0x86, 0x68, 0x2f, 0x53 +.byte 0x5e, 0xb0, 0xd2, 0xaa, 0x21, 0xc1, 0x98, 0xe6, 0x30, 0xe3, 0x67, 0x55, 0xc7, 0x9b, 0x6e, 0xac +.byte 0x19, 0xa8, 0x55, 0xa6, 0x45, 0x06, 0xd0, 0x23, 0x3a, 0xdb, 0xeb, 0x65, 0x5d, 0x2a, 0x11, 0x11 +.byte 0xf0, 0x3b, 0x4f, 0xca, 0x6d, 0xf4, 0x34, 0xc4, 0x71, 0xe4, 0xff, 0x00, 0x5a, 0xf6, 0x5c, 0xae +.byte 0x23, 0x60, 0x85, 0x73, 0xf1, 0xe4, 0x10, 0xb1, 0x25, 0xae, 0xd5, 0x92, 0xbb, 0x13, 0xc1, 0x0c +.byte 0xe0, 0x39, 0xda, 0xb4, 0x39, 0x57, 0xb5, 0xab, 0x35, 0xaa, 0x72, 0x21, 0x3b, 0x83, 0x35, 0xe7 +.byte 0x31, 0xdf, 0x7a, 0x21, 0x6e, 0xb8, 0x32, 0x08, 0x7d, 0x1d, 0x32, 0x91, 0x15, 0x4a, 0x62, 0x72 +.byte 0xcf, 0xe3, 0x77, 0xa1, 0xbc, 0xd5, 0x11, 0x1b, 0x76, 0x01, 0x67, 0x08, 0xe0, 0x41, 0x0b, 0xc3 +.byte 0xeb, 0x15, 0x6e, 0xf8, 0xa4, 0x19, 0xd9, 0xa2, 0xab, 0xaf, 0xe2, 0x27, 0x52, 0x56, 0x2b, 0x02 +.byte 0x8a, 0x2c, 0x14, 0x24, 0xf9, 0xbf, 0x42, 0x02, 0xbf, 0x26, 0xc8, 0xc6, 0x8f, 0xe0, 0x6e, 0x38 +.byte 0x7d, 0x53, 0x2d, 0xe5, 0xed, 0x98, 0xb3, 0x95, 0x63, 0x68, 0x7f, 0xf9, 0x35, 0xf4, 0xdf, 0x88 +.byte 0xc5, 0x60, 0x35, 0x92, 0xc0, 0x7c, 0x69, 0x1c, 0x61, 0x95, 0x16, 0xd0, 0xeb, 0xde, 0x0b, 0xaf +.byte 0x3e, 0x04, 0x10, 0x45, 0x65, 0x58, 0x50, 0x38, 0xaf, 0x48, 0xf2, 0x59, 0xb6, 0x16, 0xf2, 0x3c +.byte 0x0d, 0x90, 0x02, 0xc6, 0x70, 0x2e, 0x01, 0xad, 0x3c, 0x15, 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75 +.byte 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e +.byte 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69 +.byte 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x20, 0x47, 0x33, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3 +.byte 0xcb, 0x0e, 0x10, 0x67, 0x8e, 0xea, 0x14, 0x97, 0xa7, 0x32, 0x2a, 0x0a, 0x56, 0x36, 0x7f, 0x68 +.byte 0x4c, 0xc7, 0xb3, 0x6f, 0x3a, 0x23, 0x14, 0x91, 0xff, 0x19, 0x7f, 0xa5, 0xca, 0xac, 0xee, 0xb3 +.byte 0x76, 0x9d, 0x7a, 0xe9, 0x8b, 0x1b, 0xab, 0x6b, 0x31, 0xdb, 0xfa, 0x0b, 0x53, 0x4c, 0xaf, 0xc5 +.byte 0xa5, 0x1a, 0x79, 0x3c, 0x8a, 0x4c, 0xff, 0xac, 0xdf, 0x25, 0xde, 0x4e, 0xd9, 0x82, 0x32, 0x0b +.byte 0x44, 0xde, 0xca, 0xdb, 0x8c, 0xac, 0xa3, 0x6e, 0x16, 0x83, 0x3b, 0xa6, 0x64, 0x4b, 0x32, 0x89 +.byte 0xfb, 0x16, 0x16, 0x38, 0x7e, 0xeb, 0x43, 0xe2, 0xd3, 0x74, 0x4a, 0xc2, 0x62, 0x0a, 0x73, 0x0a +.byte 0xdd, 0x49, 0xb3, 0x57, 0xd2, 0xb0, 0x0a, 0x85, 0x9d, 0x71, 0x3c, 0xde, 0xa3, 0xcb, 0xc0, 0x32 +.byte 0xf3, 0x01, 0x39, 0x20, 0x43, 0x1b, 0x35, 0xd1, 0x53, 0xb3, 0xb1, 0xee, 0xc5, 0x93, 0x69, 0x82 +.byte 0x3e, 0x16, 0xb5, 0x28, 0x46, 0xa1, 0xde, 0xea, 0x89, 0x09, 0xed, 0x43, 0xb8, 0x05, 0x46, 0x8a +.byte 0x86, 0xf5, 0x59, 0x47, 0xbe, 0x1b, 0x6f, 0x01, 0x21, 0x10, 0xb9, 0xfd, 0xa9, 0xd2, 0x28, 0xca +.byte 0x10, 0x39, 0x09, 0xca, 0x13, 0x36, 0xcf, 0x9c, 0xad, 0xad, 0x40, 0x74, 0x79, 0x2b, 0x02, 0x3f +.byte 0x34, 0xff, 0xfa, 0x20, 0x69, 0x7d, 0xd3, 0xee, 0x61, 0xf5, 0xba, 0xb3, 0xe7, 0x30, 0xd0, 0x37 +.byte 0x23, 0x86, 0x72, 0x61, 0x45, 0x29, 0x48, 0x59, 0x68, 0x6f, 0x77, 0xa6, 0x2e, 0x81, 0xbe, 0x07 +.byte 0x4d, 0x6f, 0xaf, 0xce, 0xc4, 0x45, 0x13, 0x91, 0x14, 0x70, 0x06, 0x8f, 0x1f, 0x9f, 0xf8, 0x87 +.byte 0x69, 0xb1, 0x0e, 0xef, 0xc3, 0x89, 0x19, 0xeb, 0xea, 0x1c, 0x61, 0xfc, 0x7a, 0x6c, 0x8a, 0xdc +.byte 0xd6, 0x03, 0x0b, 0x9e, 0x26, 0xba, 0x12, 0xdd, 0xd4, 0x54, 0x39, 0xab, 0x26, 0xa3, 0x33, 0xea +.byte 0x75, 0x81, 0xda, 0x2d, 0xcd, 0x0f, 0x4f, 0xe4, 0x03, 0xd1, 0xef, 0x15, 0x97, 0x1b, 0x6b, 0x90 +.byte 0xc5, 0x02, 0x90, 0x93, 0x66, 0x02, 0x21, 0xb1, 0x47, 0xde, 0x8b, 0x9a, 0x4a, 0x80, 0xb9, 0x55 +.byte 0x8f, 0xb5, 0xa2, 0x2f, 0xc0, 0xd6, 0x33, 0x67, 0xda, 0x7e, 0xc4, 0xa7, 0xb4, 0x04, 0x44, 0xeb +.byte 0x47, 0xfb, 0xe6, 0x58, 0xb9, 0xf7, 0x0c, 0xf0, 0x7b, 0x2b, 0xb1, 0xc0, 0x70, 0x29, 0xc3, 0x40 +.byte 0x62, 0x2d, 0x3b, 0x48, 0x69, 0xdc, 0x23, 0x3c, 0x48, 0xeb, 0x7b, 0x09, 0x79, 0xa9, 0x6d, 0xda +.byte 0xa8, 0x30, 0x98, 0xcf, 0x80, 0x72, 0x03, 0x88, 0xa6, 0x5b, 0x46, 0xae, 0x72, 0x79, 0x7c, 0x08 +.byte 0x03, 0x21, 0x65, 0xae, 0xb7, 0xe1, 0x1c, 0xa5, 0xb1, 0x2a, 0xa2, 0x31, 0xde, 0x66, 0x04, 0xf7 +.byte 0xc0, 0x74, 0xe8, 0x71, 0xde, 0xff, 0x3d, 0x59, 0xcc, 0x96, 0x26, 0x12, 0x8b, 0x85, 0x95, 0x57 +.byte 0x1a, 0xab, 0x6b, 0x75, 0x0b, 0x44, 0x3d, 0x11, 0x28, 0x3c, 0x7b, 0x61, 0xb7, 0xe2, 0x8f, 0x67 +.byte 0x4f, 0xe5, 0xec, 0x3c, 0x4c, 0x60, 0x80, 0x69, 0x57, 0x38, 0x1e, 0x01, 0x5b, 0x8d, 0x55, 0xe8 +.byte 0xc7, 0xdf, 0xc0, 0xcc, 0x77, 0x23, 0x34, 0x49, 0x75, 0x7c, 0xf6, 0x98, 0x11, 0xeb, 0x2d, 0xde +.byte 0xed, 0x41, 0x2e, 0x14, 0x05, 0x02, 0x7f, 0xe0, 0xfe, 0x20, 0xeb, 0x35, 0xe7, 0x11, 0xac, 0x22 +.byte 0xce, 0x57, 0x3d, 0xde, 0xc9, 0x30, 0x6d, 0x10, 0x03, 0x85, 0xcd, 0xf1, 0xff, 0x8c, 0x16, 0xb5 +.byte 0xc1, 0xb2, 0x3e, 0x88, 0x6c, 0x60, 0x7f, 0x90, 0x4f, 0x95, 0xf7, 0xf6, 0x2d, 0xad, 0x01, 0x39 +.byte 0x07, 0x04, 0xfa, 0x75, 0x80, 0x7d, 0xbf, 0x49, 0x50, 0xed, 0xef, 0xc9, 0xc4, 0x7c, 0x1c, 0xeb +.byte 0x80, 0x7e, 0xdb, 0xb6, 0xd0, 0xdd, 0x13, 0xfe, 0xc9, 0xd3, 0x9c, 0xd7, 0xb2, 0x97, 0xa9, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x78, 0x00, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54 +.byte 0x20, 0x42, 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30 +.byte 0x32, 0x30, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc6, 0xcb, 0xc7, 0x28, 0xd1, 0xfb +.byte 0x84, 0xf5, 0x9a, 0xef, 0x42, 0x14, 0x20, 0xe1, 0x43, 0x6b, 0x6e, 0x75, 0xad, 0xfc, 0x2b, 0x03 +.byte 0x84, 0xd4, 0x76, 0x93, 0x25, 0xd7, 0x59, 0x3b, 0x41, 0x65, 0x6b, 0x1e, 0xe6, 0x34, 0x2a, 0xbb +.byte 0x74, 0xf6, 0x12, 0xce, 0xe8, 0x6d, 0xe7, 0xab, 0xe4, 0x3c, 0x4e, 0x3f, 0x44, 0x08, 0x8b, 0xcd +.byte 0x16, 0x71, 0xcb, 0xbf, 0x92, 0x99, 0xf4, 0xa4, 0xd7, 0x3c, 0x50, 0x54, 0x52, 0x90, 0x85, 0x83 +.byte 0x78, 0x94, 0x67, 0x67, 0xa3, 0x1c, 0x09, 0x19, 0x3d, 0x75, 0x34, 0x85, 0xde, 0xed, 0x60, 0x7d +.byte 0xc7, 0x0c, 0xb4, 0x41, 0x52, 0xb9, 0x6e, 0xe5, 0xee, 0x42, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30 +.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44 +.byte 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x42, 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x32, 0x20, 0x32, 0x30, 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xae, 0xff, 0x09, 0x59, 0x91, 0x80, 0x0a +.byte 0x4a, 0x68, 0xe6, 0x24, 0x3f, 0xb8, 0xa7, 0xe4, 0xc8, 0x3a, 0x0a, 0x3a, 0x16, 0xcd, 0xc9, 0x23 +.byte 0x61, 0xa0, 0x93, 0x71, 0xf2, 0xab, 0x8b, 0x73, 0x8f, 0xa0, 0x67, 0x65, 0x60, 0xd2, 0x54, 0x6b +.byte 0x63, 0x51, 0x6f, 0x49, 0x33, 0xe0, 0x72, 0x07, 0x13, 0x7d, 0x38, 0xcd, 0x06, 0x92, 0x07, 0x29 +.byte 0x52, 0x6b, 0x4e, 0x77, 0x6c, 0x04, 0xd3, 0x95, 0xfa, 0xdd, 0x4c, 0x8c, 0xd9, 0x5d, 0xc1, 0x61 +.byte 0x7d, 0x4b, 0xe7, 0x28, 0xb3, 0x44, 0x81, 0x7b, 0x51, 0xaf, 0xdd, 0x33, 0xb1, 0x68, 0x7c, 0xd6 +.byte 0x4e, 0x4c, 0xfe, 0x2b, 0x68, 0xb9, 0xca, 0x66, 0x69, 0xc4, 0xec, 0x5e, 0x57, 0x7f, 0xf7, 0x0d +.byte 0xc7, 0x9c, 0x36, 0x36, 0xe5, 0x07, 0x60, 0xac, 0xc0, 0x4c, 0xea, 0x08, 0x6c, 0xef, 0x06, 0x7c +.byte 0x4f, 0x5b, 0x28, 0x7a, 0x08, 0xfc, 0x93, 0x5d, 0x9b, 0xf6, 0x9c, 0xb4, 0x8b, 0x86, 0xba, 0x21 +.byte 0xb9, 0xf4, 0xf0, 0xe8, 0x59, 0x5a, 0x28, 0xa1, 0x34, 0x84, 0x1a, 0x25, 0x91, 0xb6, 0xb5, 0x8f +.byte 0xef, 0xb2, 0xf9, 0x80, 0xfa, 0xf9, 0x3d, 0x3c, 0x11, 0x72, 0xd8, 0xe3, 0x2f, 0x86, 0x76, 0xc5 +.byte 0x79, 0x2c, 0xc1, 0xa9, 0x90, 0x93, 0x46, 0x98, 0x67, 0xcb, 0x83, 0x6a, 0xa0, 0x50, 0x23, 0xa7 +.byte 0x3b, 0xf6, 0x81, 0x39, 0xe0, 0xed, 0xf0, 0xb9, 0xbf, 0x65, 0xf1, 0xd8, 0xcb, 0x7a, 0xfb, 0xef +.byte 0x73, 0x03, 0xce, 0x00, 0xf4, 0x7d, 0xd7, 0xe0, 0x5d, 0x3b, 0x66, 0xb8, 0xdc, 0x8e, 0xba, 0x83 +.byte 0xcb, 0x87, 0x76, 0x03, 0xfc, 0x25, 0xd9, 0xe7, 0x23, 0x6f, 0x06, 0xfd, 0x67, 0xf3, 0xe0, 0xff +.byte 0x84, 0xbc, 0x47, 0xbf, 0xb5, 0x16, 0x18, 0x46, 0x69, 0x14, 0xcc, 0x05, 0xf7, 0xdb, 0xd3, 0x49 +.byte 0xac, 0x6b, 0xcc, 0xab, 0xe4, 0xb5, 0x0b, 0x43, 0x24, 0x5e, 0x4b, 0x6b, 0x4d, 0x67, 0xdf, 0xd6 +.byte 0xb5, 0x3e, 0x4f, 0x78, 0x1f, 0x94, 0x71, 0x24, 0xea, 0xde, 0x70, 0xfc, 0xf1, 0x93, 0xfe, 0x9e +.byte 0x93, 0x5a, 0xe4, 0x94, 0x5a, 0x97, 0x54, 0x0c, 0x35, 0x7b, 0x5f, 0x6c, 0xee, 0x00, 0x1f, 0x24 +.byte 0xec, 0x03, 0xba, 0x02, 0xf5, 0x76, 0xf4, 0x9f, 0xd4, 0x9a, 0xed, 0x85, 0x2c, 0x38, 0x22, 0x2f +.byte 0xc7, 0xd8, 0x2f, 0x76, 0x11, 0x4f, 0xfd, 0x6c, 0x5c, 0xe8, 0xf5, 0x8e, 0x27, 0x87, 0x7f, 0x19 +.byte 0x4a, 0x21, 0x47, 0x90, 0x1d, 0x79, 0x8d, 0x1c, 0x5b, 0xf8, 0xcf, 0x4a, 0x85, 0xe4, 0xed, 0xb3 +.byte 0x5b, 0x8d, 0xbe, 0xc4, 0x64, 0x28, 0x5d, 0x41, 0xc4, 0x6e, 0xac, 0x38, 0x5a, 0x4f, 0x23, 0x74 +.byte 0x74, 0xa9, 0x12, 0xc3, 0xf6, 0xd2, 0xb9, 0x11, 0x15, 0x33, 0x07, 0x91, 0xd8, 0x3b, 0x37, 0x3a +.byte 0x63, 0x30, 0x06, 0xd1, 0xc5, 0x22, 0x36, 0x28, 0x62, 0x23, 0x10, 0xe0, 0x46, 0xcc, 0x97, 0xac +.byte 0xd6, 0x2b, 0x5d, 0x64, 0x24, 0xd5, 0xee, 0x1c, 0x0e, 0xde, 0xfb, 0x08, 0x5a, 0x75, 0x2a, 0xf6 +.byte 0x63, 0x6d, 0xce, 0x0b, 0x42, 0xbe, 0xd1, 0xba, 0x70, 0x1c, 0x9c, 0x21, 0xe5, 0x0f, 0x31, 0x69 +.byte 0x17, 0xd7, 0xfc, 0x0a, 0xb4, 0xde, 0xed, 0x80, 0x9c, 0xcb, 0x92, 0xb4, 0x8b, 0xf5, 0xde, 0x59 +.byte 0xa2, 0x58, 0x09, 0xa5, 0x63, 0x47, 0x0b, 0xe1, 0x41, 0x32, 0x34, 0x41, 0xd9, 0x9a, 0xb1, 0xd9 +.byte 0xa8, 0xb0, 0x1b, 0x5a, 0xde, 0x0d, 0x0d, 0xf4, 0xe2, 0xb2, 0x5d, 0x35, 0x80, 0xb9, 0x81, 0xd4 +.byte 0x84, 0x69, 0x91, 0x02, 0xcb, 0x75, 0xd0, 0x8d, 0xc5, 0xb5, 0x3d, 0x09, 0x91, 0x09, 0x8f, 0x14 +.byte 0xa1, 0x14, 0x74, 0x79, 0x3e, 0xd6, 0xc9, 0x15, 0x1d, 0xa4, 0x59, 0x59, 0x22, 0xdc, 0xf6, 0x8a +.byte 0x45, 0x3d, 0x3c, 0x12, 0xd6, 0x3e, 0x5d, 0x32, 0x2f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00 +.byte 0x78, 0x00, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44 +.byte 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0xf1, 0x0b, 0xdd, 0x86, 0x43, 0x20, 0x19, 0xdf, 0x97, 0x85, 0xe8, 0x22 +.byte 0x4a, 0x9b, 0xcf, 0x9d, 0x98, 0xbf, 0xb4, 0x05, 0x26, 0xc9, 0xcb, 0xe3, 0xa6, 0xd2, 0x8f, 0xc5 +.byte 0x9e, 0x78, 0x7b, 0x31, 0x89, 0xa9, 0x89, 0xad, 0x27, 0x3c, 0x65, 0x10, 0x82, 0xfc, 0xdf, 0xc3 +.byte 0x9d, 0x4e, 0xf0, 0x33, 0x23, 0xc4, 0xd2, 0x32, 0xf5, 0x1c, 0xb0, 0xdf, 0x33, 0x17, 0x5d, 0xc5 +.byte 0xf0, 0xb1, 0x8a, 0xf9, 0xef, 0xb9, 0xb7, 0x14, 0xca, 0x29, 0x4a, 0xc2, 0x0f, 0xa9, 0x7f, 0x75 +.byte 0x65, 0x49, 0x2a, 0x30, 0x67, 0xf4, 0x64, 0xf7, 0xd6, 0x1a, 0x77, 0xda, 0xc3, 0xc2, 0x97, 0x61 +.byte 0x42, 0x7b, 0x49, 0xad, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54 +.byte 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x32, 0x30 +.byte 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xd8, 0x8e, 0xa3, 0x89, 0x80, 0x0b, 0xb2, 0x57, 0x52, 0xdc, 0xa9, 0x53, 0x4c +.byte 0x37, 0xb9, 0x7f, 0x63, 0x17, 0x13, 0xef, 0xa7, 0x5b, 0x23, 0x5b, 0x69, 0x75, 0xb0, 0x99, 0x0a +.byte 0x17, 0xc1, 0x8b, 0xc4, 0xdb, 0xa8, 0xe0, 0xcc, 0x31, 0xba, 0xc2, 0xf2, 0xcd, 0x5d, 0xe9, 0xb7 +.byte 0xf8, 0x1d, 0xaf, 0x6a, 0xc4, 0x95, 0x87, 0xd7, 0x47, 0xc9, 0x95, 0xd8, 0x82, 0x04, 0x50, 0x3d +.byte 0x81, 0x08, 0xff, 0xe4, 0x3d, 0xb3, 0xb1, 0xd6, 0xc5, 0xb2, 0xfd, 0x88, 0x09, 0xdb, 0x9c, 0x84 +.byte 0xec, 0x25, 0x17, 0x14, 0x87, 0x7f, 0x30, 0x78, 0x9b, 0x6a, 0x58, 0xc9, 0xb6, 0x73, 0x28, 0x3c +.byte 0x34, 0xf7, 0x99, 0xf7, 0x7f, 0xd3, 0xa6, 0xf8, 0x1c, 0x45, 0x7c, 0xad, 0x2c, 0x8c, 0x94, 0x3f +.byte 0xd8, 0x67, 0x10, 0x53, 0x7e, 0x22, 0xcd, 0x4e, 0x25, 0x51, 0xf0, 0x25, 0x24, 0x35, 0x11, 0x5e +.byte 0x10, 0xc6, 0xec, 0x87, 0x66, 0x89, 0x81, 0x68, 0xba, 0xcc, 0x2b, 0x9d, 0x47, 0x73, 0x1f, 0xbd +.byte 0xcd, 0x91, 0xa4, 0x72, 0x6a, 0x9c, 0xa2, 0x1b, 0x18, 0xa0, 0x6f, 0xec, 0x50, 0xf4, 0x7d, 0x40 +.byte 0xc2, 0xa8, 0x30, 0xcf, 0xbd, 0x73, 0xc8, 0x13, 0x2b, 0x10, 0x13, 0x1e, 0x8b, 0x9a, 0xa8, 0x3a +.byte 0x94, 0x73, 0xd3, 0x18, 0x69, 0x0a, 0x4a, 0xff, 0xc1, 0x01, 0x03, 0xff, 0x79, 0x7f, 0xb5, 0x48 +.byte 0x7f, 0x7b, 0xee, 0xe8, 0x29, 0x6f, 0x36, 0x4c, 0x95, 0x61, 0x86, 0xd8, 0xf9, 0xa2, 0x73, 0x8a +.byte 0xee, 0xae, 0x2f, 0x96, 0xee, 0x68, 0xcd, 0x3d, 0x4d, 0x28, 0x42, 0xf9, 0x45, 0x2b, 0x32, 0x1b +.byte 0x46, 0x55, 0x16, 0x6a, 0xa6, 0x4b, 0x29, 0xf9, 0xbb, 0x95, 0x56, 0xbf, 0x46, 0x1d, 0xec, 0x1d +.byte 0x93, 0x1d, 0xc0, 0x65, 0xb2, 0x1f, 0xa1, 0x43, 0xae, 0x56, 0x9e, 0xa0, 0xb1, 0x8f, 0x6b, 0x12 +.byte 0xb7, 0x60, 0x6d, 0x78, 0x0b, 0xca, 0x8a, 0x5c, 0xed, 0x1e, 0x96, 0x0e, 0x83, 0xa6, 0x48, 0x95 +.byte 0x8d, 0x3b, 0xa3, 0x21, 0xc4, 0xae, 0x58, 0xc6, 0x00, 0xb2, 0x84, 0xb4, 0x23, 0xa4, 0x96, 0x86 +.byte 0x35, 0xb8, 0xd8, 0x9e, 0xd8, 0xac, 0x34, 0x49, 0x98, 0x63, 0x95, 0xc5, 0xcb, 0x6d, 0x48, 0x47 +.byte 0xe2, 0xf2, 0x2e, 0x18, 0x1e, 0xd0, 0x31, 0xab, 0xdd, 0x74, 0xec, 0xf9, 0xdc, 0x8c, 0xb8, 0x1c +.byte 0x8e, 0x68, 0x23, 0xba, 0xd0, 0xf3, 0x50, 0xdc, 0xcf, 0x65, 0x8f, 0x73, 0x3a, 0x32, 0xc7, 0x7c +.byte 0xfe, 0xca, 0x82, 0x22, 0x4f, 0xbe, 0x8e, 0x62, 0x47, 0x66, 0xe5, 0xcd, 0x87, 0xe2, 0xe8, 0xd5 +.byte 0x0f, 0x18, 0x9f, 0xe5, 0x04, 0x72, 0x4b, 0x46, 0x3c, 0x10, 0xf2, 0x44, 0xc2, 0x64, 0x56, 0x71 +.byte 0x4e, 0x75, 0xe8, 0x9c, 0xc9, 0x26, 0x74, 0xc5, 0x7d, 0x59, 0xd1, 0x0a, 0x5b, 0x0f, 0x6d, 0xfe +.byte 0x9e, 0x75, 0x1c, 0x18, 0xc6, 0x1a, 0x3a, 0x7c, 0xd8, 0x0d, 0x04, 0xcc, 0xcd, 0xb7, 0x45, 0x65 +.byte 0x7a, 0xb1, 0x8f, 0xb8, 0xae, 0x84, 0x48, 0x3e, 0xb3, 0x7a, 0x4d, 0xa8, 0x03, 0xe2, 0xe2, 0x7e +.byte 0x01, 0x16, 0x59, 0x68, 0x18, 0x43, 0x33, 0xb0, 0xd2, 0xdc, 0xb0, 0x1a, 0x43, 0x35, 0xee, 0xa5 +.byte 0xda, 0xa9, 0x46, 0x5c, 0xae, 0x86, 0x81, 0x41, 0x01, 0x4a, 0x74, 0x26, 0xec, 0x9f, 0x06, 0xbf +.byte 0xc2, 0x05, 0x37, 0x64, 0x75, 0x78, 0x29, 0x68, 0xfd, 0xc5, 0xf5, 0xeb, 0xfe, 0x47, 0xf9, 0xe4 +.byte 0x85, 0xb0, 0xe1, 0x7b, 0x31, 0x9d, 0xa6, 0x7f, 0x72, 0xa3, 0xb9, 0xc4, 0x2c, 0x2e, 0xcc, 0x99 +.byte 0x57, 0x0e, 0x21, 0x0c, 0x45, 0x01, 0x94, 0x65, 0xeb, 0x65, 0x09, 0xc6, 0x63, 0x22, 0x0b, 0x33 +.byte 0x49, 0x92, 0x48, 0x3c, 0xfc, 0xcd, 0xce, 0xb0, 0x3e, 0x8e, 0x9e, 0x8b, 0xf8, 0xfe, 0x49, 0xc5 +.byte 0x35, 0x72, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x26, 0x01, 0x30, 0x48, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x17, 0x30 +.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xab, 0xa4, 0x81, 0xe5, 0x95, 0xcd, 0xf5, 0xf6, 0x14 +.byte 0x8e, 0xc2, 0x4f, 0xca, 0xd4, 0xe2, 0x78, 0x95, 0x58, 0x9c, 0x41, 0xe1, 0x0d, 0x99, 0x40, 0x24 +.byte 0x17, 0x39, 0x91, 0x33, 0x66, 0xe9, 0xbe, 0xe1, 0x83, 0xaf, 0x62, 0x5c, 0x89, 0xd1, 0xfc, 0x24 +.byte 0x5b, 0x61, 0xb3, 0xe0, 0x11, 0x11, 0x41, 0x1c, 0x1d, 0x6e, 0xf0, 0xb8, 0xbb, 0xf8, 0xde, 0xa7 +.byte 0x81, 0xba, 0xa6, 0x48, 0xc6, 0x9f, 0x1d, 0xbd, 0xbe, 0x8e, 0xa9, 0x41, 0x3e, 0xb8, 0x94, 0xed +.byte 0x29, 0x1a, 0xd4, 0x8e, 0xd2, 0x03, 0x1d, 0x03, 0xef, 0x6d, 0x0d, 0x67, 0x1c, 0x57, 0xd7, 0x06 +.byte 0xad, 0xca, 0xc8, 0xf5, 0xfe, 0x0e, 0xaf, 0x66, 0x25, 0x48, 0x04, 0x96, 0x0b, 0x5d, 0xa3, 0xba +.byte 0x16, 0xc3, 0x08, 0x4f, 0xd1, 0x46, 0xf8, 0x14, 0x5c, 0xf2, 0xc8, 0x5e, 0x01, 0x99, 0x6d, 0xfd +.byte 0x88, 0xcc, 0x86, 0xa8, 0xc1, 0x6f, 0x31, 0x42, 0x6c, 0x52, 0x3e, 0x68, 0xcb, 0xf3, 0x19, 0x34 +.byte 0xdf, 0xbb, 0x87, 0x18, 0x56, 0x80, 0x26, 0xc4, 0xd0, 0xdc, 0xc0, 0x6f, 0xdf, 0xde, 0xa0, 0xc2 +.byte 0x91, 0x16, 0xa0, 0x64, 0x11, 0x4b, 0x44, 0xbc, 0x1e, 0xf6, 0xe7, 0xfa, 0x63, 0xde, 0x66, 0xac +.byte 0x76, 0xa4, 0x71, 0xa3, 0xec, 0x36, 0x94, 0x68, 0x7a, 0x77, 0xa4, 0xb1, 0xe7, 0x0e, 0x2f, 0x81 +.byte 0x7a, 0xe2, 0xb5, 0x72, 0x86, 0xef, 0xa2, 0x6b, 0x8b, 0xf0, 0x0f, 0xdb, 0xd3, 0x59, 0x3f, 0xba +.byte 0x72, 0xbc, 0x44, 0x24, 0x9c, 0xe3, 0x73, 0xb3, 0xf7, 0xaf, 0x57, 0x2f, 0x42, 0x26, 0x9d, 0xa9 +.byte 0x74, 0xba, 0x00, 0x52, 0xf2, 0x4b, 0xcd, 0x53, 0x7c, 0x47, 0x0b, 0x36, 0x85, 0x0e, 0x66, 0xa9 +.byte 0x08, 0x97, 0x16, 0x34, 0x57, 0xc1, 0x66, 0xf7, 0x80, 0xe3, 0xed, 0x70, 0x54, 0xc7, 0x93, 0xe0 +.byte 0x2e, 0x28, 0x15, 0x59, 0x87, 0xba, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4c, 0x00, 0x26, 0x02 +.byte 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x49, 0x64 +.byte 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69 +.byte 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x02, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0x50, 0x19 +.byte 0xde, 0x3f, 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1, 0x6f, 0x51, 0x61, 0x82, 0xb2, 0xa9, 0x4f, 0x8f +.byte 0x67, 0x89, 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c, 0x28, 0xd9, 0xd7, 0xf0, 0xff, 0xae, 0x95, 0x43 +.byte 0x72, 0x99, 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1, 0x42, 0xe1, 0x31, 0x50, 0x74, 0xd1, 0x81, 0x0d +.byte 0x7c, 0xcd, 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac, 0xad, 0x5e, 0x86, 0x6e, 0xf3, 0x09, 0x8a, 0x1f +.byte 0x5a, 0x32, 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8, 0x5c, 0x0a, 0xec, 0xff, 0x98, 0xd2, 0xaf, 0x71 +.byte 0xb3, 0xb4, 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92, 0xbc, 0xbd, 0xec, 0x4f, 0x32, 0x30, 0x88, 0x4b +.byte 0x17, 0x5e, 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02, 0x97, 0x8d, 0xd9, 0x62, 0x2b, 0xbf, 0x24, 0x1f +.byte 0x62, 0x8d, 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49, 0x78, 0x3c, 0x93, 0x60, 0x88, 0x22, 0xfc, 0x99 +.byte 0xda, 0x36, 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54, 0x00, 0x67, 0x35, 0x6e, 0x73, 0xbf, 0x02, 0x58 +.byte 0xf0, 0xa4, 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a, 0xca, 0xe0, 0x36, 0xa5, 0x19, 0x16, 0xf5, 0xfd +.byte 0xb7, 0xef, 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a, 0x04, 0xfd, 0xce, 0x34, 0xca, 0x24, 0xdc, 0x74 +.byte 0x23, 0x1b, 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4, 0x01, 0x25, 0xf6, 0x30, 0xdd, 0x02, 0x5d, 0x9f +.byte 0xe0, 0xd5, 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1, 0xbb, 0x49, 0x49, 0xd8, 0x9f, 0x5b, 0x02, 0xf3 +.byte 0x8a, 0xe4, 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f, 0xc1, 0xaf, 0x8b, 0x0e, 0x74, 0x17, 0xa8, 0xd1 +.byte 0x72, 0x88, 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4, 0x46, 0x79, 0xc6, 0x17, 0xb1, 0xda, 0x98, 0x1e +.byte 0x07, 0x59, 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd, 0x90, 0x56, 0xce, 0xfb, 0xab, 0xa5, 0x60, 0x9d +.byte 0xc4, 0x9d, 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87, 0xf9, 0x8f, 0x2b, 0x23, 0x0a, 0x23, 0x76, 0x3b +.byte 0xf7, 0x33, 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9, 0x4b, 0xa2, 0xe0, 0x4e, 0xbc, 0x7e, 0x93, 0x39 +.byte 0x84, 0x07, 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07, 0x5a, 0xe5, 0xb1, 0xac, 0xd1, 0x18, 0xcc, 0xf2 +.byte 0x35, 0xe5, 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9, 0x3d, 0xfb, 0x0f, 0x18, 0x7d, 0x8b, 0x3b, 0xc1 +.byte 0x13, 0xc2, 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37, 0xe9, 0x1f, 0xa1, 0x0e, 0x6a, 0xdf, 0x62, 0x2e +.byte 0xcb, 0x35, 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25, 0x38, 0xf4, 0xfa, 0x4b, 0xa7, 0x89, 0x5c, 0x9c +.byte 0xd2, 0xe3, 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c, 0xd5, 0x59, 0x87, 0xc2, 0x3f, 0x4e, 0x0c, 0x5c +.byte 0x52, 0xf4, 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea, 0xa3, 0xac, 0xfd, 0x49, 0x34, 0x1a, 0x28, 0xf3 +.byte 0x41, 0x88, 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff, 0x99, 0x1d, 0x5f, 0xba, 0xcb, 0xe8, 0x1e, 0xf2 +.byte 0xb9, 0x50, 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5, 0xef, 0xbe, 0xa0, 0xed, 0x33, 0x0b, 0x74, 0xbe +.byte 0x20, 0x20, 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03, 0x7a, 0x55, 0x80, 0x7f, 0x46, 0x4e, 0x96, 0xa7 +.byte 0xf4, 0x1e, 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1, 0x33, 0x64, 0x2b, 0x63, 0xd7, 0x32, 0x5e, 0x9f +.byte 0xf9, 0xc0, 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc, 0x93, 0x9a, 0xf9, 0x9c, 0x12, 0x90, 0x78, 0x7a +.byte 0x80, 0x87, 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55, 0x74, 0x78, 0xb1, 0xba, 0xe1, 0x6e, 0x70, 0x04 +.byte 0xba, 0x4f, 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff, 0x31, 0xf0, 0x73, 0x3d, 0x3d, 0x94, 0x2a, 0xb1 +.byte 0x0b, 0x41, 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65, 0x6b, 0x79, 0x33, 0xb4, 0xd7, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x4c, 0x00, 0x26, 0x01, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17 +.byte 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70 +.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x10, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xaf, 0x35, 0x2e, 0xd8, 0xac, 0x6c, 0x55, 0x69, 0x06, 0x71, 0xe5, 0x13, 0x68 +.byte 0x24, 0xb3, 0x4f, 0xd8, 0xcc, 0x21, 0x47, 0xf8, 0xf1, 0x60, 0x38, 0x89, 0x89, 0x03, 0xe9, 0xbd +.byte 0xea, 0x5e, 0x46, 0x53, 0x09, 0xdc, 0x5c, 0xf5, 0x5a, 0xe8, 0xf7, 0x45, 0x2a, 0x02, 0xeb, 0x31 +.byte 0x61, 0xd7, 0x29, 0x33, 0x4c, 0xce, 0xc7, 0x7c, 0x0a, 0x37, 0x7e, 0x0f, 0xba, 0x32, 0x98, 0xe1 +.byte 0x1d, 0x97, 0xaf, 0x8f, 0xc7, 0xdc, 0xc9, 0x38, 0x96, 0xf3, 0xdb, 0x1a, 0xfc, 0x51, 0xed, 0x68 +.byte 0xc6, 0xd0, 0x6e, 0xa4, 0x7c, 0x24, 0xd1, 0xae, 0x42, 0xc8, 0x96, 0x50, 0x63, 0x2e, 0xe0, 0xfe +.byte 0x75, 0xfe, 0x98, 0xa7, 0x5f, 0x49, 0x2e, 0x95, 0xe3, 0x39, 0x33, 0x64, 0x8e, 0x1e, 0xa4, 0x5f +.byte 0x90, 0xd2, 0x67, 0x3c, 0xb2, 0xd9, 0xfe, 0x41, 0xb9, 0x55, 0xa7, 0x09, 0x8e, 0x72, 0x05, 0x1e +.byte 0x8b, 0xdd, 0x44, 0x85, 0x82, 0x42, 0xd0, 0x49, 0xc0, 0x1d, 0x60, 0xf0, 0xd1, 0x17, 0x2c, 0x95 +.byte 0xeb, 0xf6, 0xa5, 0xc1, 0x92, 0xa3, 0xc5, 0xc2, 0xa7, 0x08, 0x60, 0x0d, 0x60, 0x04, 0x10, 0x96 +.byte 0x79, 0x9e, 0x16, 0x34, 0xe6, 0xa9, 0xb6, 0xfa, 0x25, 0x45, 0x39, 0xc8, 0x1e, 0x65, 0xf9, 0x93 +.byte 0xf5, 0xaa, 0xf1, 0x52, 0xdc, 0x99, 0x98, 0x3d, 0xa5, 0x86, 0x1a, 0x0c, 0x35, 0x33, 0xfa, 0x4b +.byte 0xa5, 0x04, 0x06, 0x15, 0x1c, 0x31, 0x80, 0xef, 0xaa, 0x18, 0x6b, 0xc2, 0x7b, 0xd7, 0xda, 0xce +.byte 0xf9, 0x33, 0x20, 0xd5, 0xf5, 0xbd, 0x6a, 0x33, 0x2d, 0x81, 0x04, 0xfb, 0xb0, 0x5c, 0xd4, 0x9c +.byte 0xa3, 0xe2, 0x5c, 0x1d, 0xe3, 0xa9, 0x42, 0x75, 0x5e, 0x7b, 0xd4, 0x77, 0xef, 0x39, 0x54, 0xba +.byte 0xc9, 0x0a, 0x18, 0x1b, 0x12, 0x99, 0x49, 0x2f, 0x88, 0x4b, 0xfd, 0x50, 0x62, 0xd1, 0x73, 0xe7 +.byte 0x8f, 0x7a, 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x26, 0x01, 0x30, 0x4c, 0x31, 0x20 +.byte 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x33 +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 +.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcc, 0x25, 0x76, 0x90, 0x79 +.byte 0x06, 0x78, 0x22, 0x16, 0xf5, 0xc0, 0x83, 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd, 0x05, 0x76, 0x11 +.byte 0xc5, 0xad, 0x88, 0x72, 0xfc, 0x46, 0x02, 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04, 0x5f, 0x24, 0xcb +.byte 0x2e, 0x4b, 0xe1, 0x60, 0x82, 0x46, 0xe1, 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70, 0x6c, 0xdd, 0x64 +.byte 0xd1, 0xeb, 0xf5, 0x2c, 0xa3, 0x0f, 0x82, 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7, 0xb6, 0x14, 0x86 +.byte 0x10, 0x79, 0xbb, 0x3b, 0x13, 0x80, 0x77, 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a, 0x62, 0x2f, 0x1f +.byte 0x5e, 0xfa, 0x96, 0x68, 0xdf, 0x89, 0x27, 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e, 0xc9, 0xcb, 0x26 +.byte 0x59, 0x0d, 0x73, 0xde, 0xb0, 0xc8, 0xe9, 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef, 0x5b, 0x8b, 0xd2 +.byte 0x04, 0x60, 0xca, 0x49, 0xa6, 0x28, 0xf6, 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28, 0x91, 0xe5, 0x9d +.byte 0x8a, 0x61, 0x57, 0x37, 0xac, 0x74, 0x14, 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72, 0x2f, 0x2e, 0x9c +.byte 0xfb, 0xd0, 0xbb, 0xbf, 0xf5, 0x3d, 0x00, 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b, 0xae, 0x53, 0xa6 +.byte 0x3a, 0x16, 0x73, 0x8c, 0xdd, 0x41, 0x0e, 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1, 0xe9, 0xb2, 0x4f +.byte 0x90, 0x2e, 0x32, 0x60, 0xe9, 0x57, 0xcb, 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5, 0x38, 0x26, 0x60 +.byte 0x75, 0xb2, 0x9f, 0x77, 0xff, 0x91, 0x14, 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad, 0x40, 0x15, 0x48 +.byte 0xd1, 0x02, 0x31, 0x61, 0x19, 0x5e, 0xb8, 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64, 0x9a, 0x7a, 0xbf +.byte 0x5f, 0xc1, 0x13, 0xef, 0x9b, 0x62, 0xfb, 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16, 0xa9, 0x03, 0xda +.byte 0x6e, 0xe9, 0x83, 0x93, 0x71, 0x76, 0xc6, 0x69, 0x85, 0x82, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x4e, 0x00, 0x26, 0x02, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x36, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 +.byte 0x67, 0x6e, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0x95, 0x07, 0xe8, 0x73, 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca, 0x7b, 0x3c, 0xf7 +.byte 0x0d, 0x08, 0xf1, 0xb4, 0x45, 0x0b, 0x2c, 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b, 0x3c, 0xae, 0x83 +.byte 0xb8, 0x41, 0x92, 0x33, 0x14, 0xa4, 0x6f, 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0, 0x88, 0x6b, 0xc5 +.byte 0xb6, 0x89, 0xd1, 0xc6, 0xb2, 0xff, 0x14, 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a, 0xdd, 0x1b, 0x5a +.byte 0xc6, 0xd6, 0x87, 0xee, 0x4d, 0x3a, 0x15, 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92, 0x80, 0xca, 0x44 +.byte 0xde, 0x73, 0x94, 0x4e, 0xf3, 0xa7, 0x89, 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8, 0x12, 0x50, 0x6d +.byte 0x42, 0x66, 0x2f, 0x4d, 0xb9, 0x79, 0x28, 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80, 0xb7, 0x19, 0x81 +.byte 0x0e, 0x7e, 0xc4, 0x8a, 0xbc, 0x64, 0x4c, 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d, 0x3c, 0x8a, 0xc5 +.byte 0xb2, 0x66, 0xd5, 0x90, 0x9a, 0xb7, 0x31, 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32, 0x06, 0xa6, 0x1e +.byte 0xf9, 0xb9, 0xeb, 0xaa, 0xa3, 0xb8, 0xbf, 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0, 0x18, 0x89, 0xdf +.byte 0xe4, 0x0f, 0x79, 0xf5, 0xea, 0xa2, 0x1f, 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7, 0xbc, 0x93, 0xbb +.byte 0x6d, 0x53, 0xe2, 0x48, 0x7c, 0x8c, 0x10, 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77, 0x61, 0x7e, 0xe0 +.byte 0xea, 0x8c, 0x3c, 0xaa, 0xb4, 0xa4, 0xf6, 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d, 0xfd, 0x8c, 0xb2 +.byte 0x89, 0xcf, 0xd0, 0xa0, 0x61, 0x77, 0xc8, 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a, 0xf7, 0x5d, 0x3a +.byte 0xca, 0xa2, 0xdb, 0x9d, 0x09, 0xde, 0x5d, 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd, 0x57, 0x92, 0xfa +.byte 0x7e, 0xbc, 0x50, 0x04, 0x63, 0x34, 0xdf, 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36, 0xb2, 0x39, 0xe4 +.byte 0xac, 0x24, 0x36, 0xb7, 0xf0, 0xef, 0xb6, 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde, 0xb2, 0xf8, 0xe2 +.byte 0x85, 0xb7, 0x73, 0xa2, 0xb8, 0x35, 0xaa, 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1, 0x6f, 0x54, 0x8a +.byte 0xf1, 0x72, 0x56, 0x6e, 0x2e, 0x88, 0xc5, 0x51, 0x42, 0x44, 0x15, 0x94, 0xee, 0xa3, 0xc5, 0x38 +.byte 0x96, 0x9b, 0x4e, 0x4e, 0x5a, 0x0b, 0x47, 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30, 0xbc, 0x71, 0x37 +.byte 0xe5, 0xa6, 0xec, 0x21, 0x08, 0x75, 0xfc, 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5, 0xd9, 0x91, 0x97 +.byte 0x84, 0x0a, 0x6c, 0xd4, 0x02, 0x4d, 0x74, 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb, 0x83, 0xf2, 0x5e +.byte 0x14, 0xa1, 0x04, 0xb0, 0x0b, 0xe9, 0xfe, 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2, 0x08, 0xb3, 0x61 +.byte 0x66, 0x09, 0x6a, 0xb1, 0x06, 0x3a, 0x65, 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd, 0xc9, 0xda, 0x28 +.byte 0x8d, 0x1a, 0x11, 0x87, 0x70, 0x81, 0x0a, 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a, 0x86, 0x05, 0x00 +.byte 0x9e, 0xdb, 0x80, 0xd6, 0x25, 0xf9, 0xdc, 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76, 0x39, 0x5b, 0xea +.byte 0xf9, 0xa5, 0xa1, 0xd8, 0x83, 0x0f, 0xd1, 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85, 0xcf, 0x33, 0x48 +.byte 0xf5, 0xca, 0x6d, 0x64, 0x14, 0x2c, 0x7a, 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49, 0xc5, 0x95, 0x64 +.byte 0x1a, 0x63, 0x0e, 0x79, 0x3d, 0xf5, 0xb3, 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42, 0x45, 0x79, 0x6e +.byte 0x0e, 0x87, 0x19, 0x5c, 0x54, 0xb1, 0x65, 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13, 0xe9, 0x0d, 0x6f +.byte 0xb8, 0x2e, 0xdc, 0x67, 0x6e, 0xc9, 0x8b, 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00, 0x19, 0x70, 0x83 +.byte 0x79, 0x91, 0x97, 0x91, 0xd4, 0x1a, 0x27, 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8, 0x14, 0x63, 0x3c +.byte 0x28, 0x4c, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x78, 0x00, 0x30, 0x4c, 0x31, 0x2e +.byte 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x25, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x45, 0x43, 0x43, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x32, 0x30, 0x32, 0x31, 0x31, 0x0d +.byte 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07 +.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62 +.byte 0x00, 0x04, 0x96, 0x86, 0x58, 0x28, 0x37, 0x0a, 0x67, 0xd0, 0xa0, 0xde, 0x24, 0x19, 0x19, 0xe1 +.byte 0xe4, 0x05, 0x07, 0x1f, 0x97, 0xed, 0xe8, 0x64, 0x82, 0xb9, 0xf6, 0xc4, 0x71, 0x50, 0xce, 0x8a +.byte 0x0c, 0xff, 0xd7, 0xb5, 0x76, 0xbb, 0xa1, 0x6c, 0x93, 0x6c, 0x83, 0xa2, 0x68, 0x6e, 0xa5, 0xd9 +.byte 0xbe, 0x2c, 0x88, 0x95, 0x41, 0xcd, 0x5d, 0xdd, 0xb1, 0xca, 0x83, 0x63, 0x83, 0xcc, 0xc0, 0xbe +.byte 0x74, 0xd9, 0xe0, 0x9d, 0xa4, 0xee, 0x4a, 0x4e, 0x56, 0xe0, 0x98, 0x29, 0x41, 0x93, 0x52, 0x10 +.byte 0xd5, 0x24, 0x38, 0x02, 0x32, 0x67, 0xf1, 0x94, 0x12, 0x6f, 0xef, 0xd7, 0xc5, 0xde, 0x2e, 0xfd +.byte 0x19, 0x80, 0x4e, 0x00, 0x26, 0x02, 0x30, 0x4c, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x25, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x52, 0x53, 0x41, 0x20 +.byte 0x54, 0x4c, 0x53, 0x20, 0x32, 0x30, 0x32, 0x31, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x44, 0x45, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x80, 0x0e, 0xc4, 0x79, 0xbd, 0x05, 0x8c, 0x7d, 0xb0, 0xa3 +.byte 0x9d, 0x4d, 0x22, 0x4d, 0xcb, 0xf0, 0x41, 0x97, 0x4d, 0x59, 0xe0, 0xd1, 0xfe, 0x56, 0x8c, 0x97 +.byte 0xf2, 0xd7, 0xbd, 0x8f, 0x6c, 0xb7, 0x23, 0x8f, 0x5f, 0xd5, 0xc4, 0xd8, 0x41, 0xcb, 0xf2, 0x02 +.byte 0x1e, 0x71, 0xe5, 0xe9, 0xf6, 0x5e, 0xcb, 0x08, 0x2a, 0x5e, 0x30, 0xf2, 0x2d, 0x66, 0xc7, 0x84 +.byte 0x1b, 0x64, 0x57, 0x38, 0x9d, 0x75, 0x2d, 0x56, 0xc6, 0x2f, 0x61, 0xef, 0x96, 0xfc, 0x20, 0x46 +.byte 0xbd, 0xeb, 0xd4, 0x7b, 0x3f, 0x3f, 0x7c, 0x47, 0x38, 0x04, 0xa9, 0x1b, 0xaa, 0x52, 0xdf, 0x13 +.byte 0x37, 0xd3, 0x15, 0x15, 0x4e, 0xbd, 0x5f, 0x7c, 0xaf, 0xad, 0x63, 0xc7, 0x79, 0xdc, 0x08, 0x7b +.byte 0xd5, 0xa0, 0xe5, 0xf7, 0x5b, 0x75, 0xac, 0x80, 0x55, 0x99, 0x92, 0x61, 0x9b, 0xcd, 0x2a, 0x17 +.byte 0x7d, 0xdb, 0x8f, 0xf4, 0xb5, 0x6a, 0xea, 0x17, 0x4a, 0x64, 0x28, 0x66, 0x15, 0x29, 0x6c, 0x02 +.byte 0xf1, 0x6b, 0xd5, 0xba, 0xa3, 0x33, 0xdc, 0x5a, 0x67, 0xa7, 0x05, 0xe2, 0xbf, 0x65, 0xb6, 0x16 +.byte 0xb0, 0x10, 0xed, 0xcd, 0x50, 0x33, 0xc9, 0x70, 0x50, 0xec, 0x19, 0x8e, 0xb0, 0xc7, 0xf2, 0x74 +.byte 0x5b, 0x6b, 0x44, 0xc6, 0x7d, 0x96, 0xb9, 0x98, 0x08, 0x59, 0x66, 0xde, 0x29, 0x01, 0x9b, 0xf4 +.byte 0x2a, 0x6d, 0xd3, 0x15, 0x3a, 0x90, 0x6a, 0x67, 0xf1, 0xb4, 0x6b, 0x66, 0xd9, 0x21, 0xeb, 0xca +.byte 0xd9, 0x62, 0x7c, 0x46, 0x10, 0x5c, 0xde, 0x75, 0x49, 0x67, 0x9e, 0x42, 0xf9, 0xfe, 0x75, 0xa9 +.byte 0xa3, 0xad, 0xff, 0x76, 0x0a, 0x67, 0x40, 0xe3, 0xc5, 0xf7, 0x8d, 0xc7, 0x85, 0x9a, 0x59, 0x9e +.byte 0x62, 0x9a, 0x6a, 0xed, 0x45, 0x87, 0x98, 0x67, 0xb2, 0xd5, 0x4a, 0x3c, 0xd7, 0xb4, 0x3b, 0x00 +.byte 0x0d, 0xc0, 0x8f, 0x1f, 0xe1, 0x40, 0xc4, 0xae, 0x6c, 0x21, 0xdc, 0x49, 0x7e, 0x7e, 0xca, 0xb2 +.byte 0x8d, 0x6d, 0xb6, 0xbf, 0x93, 0x2f, 0xa1, 0x5c, 0x3e, 0x8f, 0xca, 0xed, 0x80, 0x8e, 0x58, 0xe1 +.byte 0xdb, 0x57, 0xcf, 0x85, 0x36, 0x38, 0xb2, 0x71, 0xa4, 0x09, 0x8c, 0x92, 0x89, 0x08, 0x88, 0x48 +.byte 0xf1, 0x40, 0x63, 0x18, 0xb2, 0x5b, 0x8c, 0x5a, 0xe3, 0xc3, 0xd3, 0x17, 0xaa, 0xab, 0x19, 0xa3 +.byte 0x2c, 0x1b, 0xe4, 0xd5, 0xc6, 0xe2, 0x66, 0x7a, 0xd7, 0x82, 0x19, 0xa6, 0x3b, 0x16, 0x2c, 0x2f +.byte 0x71, 0x87, 0x5f, 0x45, 0x9e, 0x95, 0x73, 0x93, 0xc2, 0x42, 0x81, 0x21, 0x13, 0x96, 0xd7, 0x9d +.byte 0xbb, 0x93, 0x68, 0x15, 0xfa, 0x9d, 0xa4, 0x1d, 0x8c, 0xf2, 0x81, 0xe0, 0x58, 0x06, 0xbd, 0xc9 +.byte 0xb6, 0xe3, 0xf6, 0x89, 0x5d, 0x89, 0xf9, 0xac, 0x44, 0xa1, 0xcb, 0x6b, 0xfa, 0x16, 0xf1, 0xc7 +.byte 0x50, 0x3d, 0x24, 0xda, 0xf7, 0xc3, 0xe4, 0x87, 0xd5, 0x56, 0xf1, 0x4f, 0x90, 0x30, 0xfa, 0x45 +.byte 0x09, 0x59, 0xda, 0x34, 0xce, 0xe0, 0x13, 0x1c, 0x04, 0x7c, 0x00, 0xd4, 0x9b, 0x86, 0xa4, 0x40 +.byte 0xbc, 0xd9, 0xdc, 0x4c, 0x57, 0x7e, 0xae, 0xb7, 0x33, 0xb6, 0x5e, 0x76, 0xe1, 0x65, 0x8b, 0x66 +.byte 0xdf, 0x8d, 0xca, 0xd7, 0x98, 0xaf, 0xce, 0x36, 0x98, 0x8c, 0x9c, 0x83, 0x99, 0x03, 0x70, 0xf3 +.byte 0xaf, 0x74, 0xed, 0xc6, 0x0e, 0x36, 0xe7, 0xbd, 0xec, 0xc1, 0x73, 0xa7, 0x94, 0x5a, 0xcb, 0x92 +.byte 0x64, 0x82, 0xa6, 0x00, 0xc1, 0x70, 0xa1, 0x6e, 0x2c, 0x29, 0xe1, 0x58, 0x57, 0xec, 0x5a, 0x7c +.byte 0x99, 0x6b, 0x25, 0xa4, 0x90, 0x3a, 0x80, 0xf4, 0x20, 0x9d, 0x9a, 0xce, 0xc7, 0x2d, 0xf9, 0xb2 +.byte 0x4b, 0x29, 0x95, 0x83, 0xe9, 0x35, 0x8d, 0xa7, 0x49, 0x48, 0xa7, 0x0f, 0x4c, 0x19, 0x91, 0xd0 +.byte 0xf5, 0xbf, 0x10, 0xe0, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x41, 0x54, 0x31, 0x23, 0x30 +.byte 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x72 +.byte 0x63, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x47, 0x6d +.byte 0x62, 0x48, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x47, 0x4c, 0x4f +.byte 0x42, 0x41, 0x4c, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xae, 0x2e +.byte 0x56, 0xad, 0x1b, 0x1c, 0xef, 0xf6, 0x95, 0x8f, 0xa0, 0x77, 0x1b, 0x2b, 0xd3, 0x63, 0x8f, 0x84 +.byte 0x4d, 0x45, 0xa2, 0x0f, 0x9f, 0x5b, 0x45, 0xab, 0x59, 0x7b, 0x51, 0x34, 0xf9, 0xec, 0x8b, 0x8a +.byte 0x78, 0xc5, 0xdd, 0x6b, 0xaf, 0xbd, 0xc4, 0xdf, 0x93, 0x45, 0x1e, 0xbf, 0x91, 0x38, 0x0b, 0xae +.byte 0x0e, 0x16, 0xe7, 0x41, 0x73, 0xf8, 0xdb, 0xbb, 0xd1, 0xb8, 0x51, 0xe0, 0xcb, 0x83, 0x3b, 0x73 +.byte 0x38, 0x6e, 0x77, 0x8a, 0x0f, 0x59, 0x63, 0x26, 0xcd, 0xa7, 0x2a, 0xce, 0x54, 0xfb, 0xb8, 0xe2 +.byte 0xc0, 0x7c, 0x47, 0xce, 0x60, 0x7c, 0x3f, 0xb2, 0x73, 0xf2, 0xc0, 0x19, 0xb6, 0x8a, 0x92, 0x87 +.byte 0x35, 0x0d, 0x90, 0x28, 0xa2, 0xe4, 0x15, 0x04, 0x63, 0x3e, 0xba, 0xaf, 0xee, 0x7c, 0x5e, 0xcc +.byte 0xa6, 0x8b, 0x50, 0xb2, 0x38, 0xf7, 0x41, 0x63, 0xca, 0xce, 0xff, 0x69, 0x8f, 0x68, 0x0e, 0x95 +.byte 0x36, 0xe5, 0xcc, 0xb9, 0x8c, 0x09, 0xca, 0x4b, 0xdd, 0x31, 0x90, 0x96, 0xc8, 0xcc, 0x1f, 0xfd +.byte 0x56, 0x96, 0x34, 0xdb, 0x8e, 0x1c, 0xea, 0x2c, 0xbe, 0x85, 0x2e, 0x63, 0xdd, 0xaa, 0xa9, 0x95 +.byte 0xd3, 0xfd, 0x29, 0x95, 0x13, 0xf0, 0xc8, 0x98, 0x93, 0xd9, 0x2d, 0x16, 0x47, 0x90, 0x11, 0x83 +.byte 0xa2, 0x3a, 0x22, 0xa2, 0x28, 0x57, 0xa2, 0xeb, 0xfe, 0xc0, 0x8c, 0x28, 0xa0, 0xa6, 0x7d, 0xe7 +.byte 0x2a, 0x42, 0x3b, 0x82, 0x80, 0x63, 0xa5, 0x63, 0x1f, 0x19, 0xcc, 0x7c, 0xb2, 0x66, 0xa8, 0xc2 +.byte 0xd3, 0x6d, 0x37, 0x6f, 0xe2, 0x7e, 0x06, 0x51, 0xd9, 0x45, 0x84, 0x1f, 0x12, 0xce, 0x24, 0x52 +.byte 0x64, 0x85, 0x0b, 0x48, 0x80, 0x4e, 0x87, 0xb1, 0x22, 0x22, 0x30, 0xaa, 0xeb, 0xae, 0xbe, 0xe0 +.byte 0x02, 0xe0, 0x40, 0xe8, 0xb0, 0x42, 0x80, 0x03, 0x51, 0xaa, 0xb4, 0x7e, 0xaa, 0x44, 0xd7, 0x43 +.byte 0x61, 0xf3, 0xa2, 0x6b, 0x16, 0x89, 0x49, 0xa4, 0xa3, 0xa4, 0x2b, 0x8a, 0x02, 0xc4, 0x78, 0xf4 +.byte 0x68, 0x8a, 0xc1, 0xe4, 0x7a, 0x36, 0xb1, 0x6f, 0x1b, 0x96, 0x1b, 0x77, 0x49, 0x8d, 0xd4, 0xc9 +.byte 0x06, 0x72, 0x8f, 0xcf, 0x53, 0xe3, 0xdc, 0x17, 0x85, 0x20, 0x4a, 0xdc, 0x98, 0x27, 0xd3, 0x91 +.byte 0x26, 0x2b, 0x47, 0x1e, 0x69, 0x07, 0xaf, 0xde, 0xa2, 0xe4, 0xe4, 0xd4, 0x6b, 0x0b, 0xb3, 0x5e +.byte 0x7c, 0xd4, 0x24, 0x80, 0x47, 0x29, 0x69, 0x3b, 0x6e, 0xe8, 0xac, 0xfd, 0x40, 0xeb, 0xd8, 0xed +.byte 0x71, 0x71, 0x2b, 0xf2, 0xe8, 0x58, 0x1d, 0xeb, 0x41, 0x97, 0x22, 0xc5, 0x1f, 0xd4, 0x39, 0xd0 +.byte 0x27, 0x8f, 0x87, 0xe3, 0x18, 0xf4, 0xe0, 0xa9, 0x46, 0x0d, 0xf5, 0x74, 0x3a, 0x82, 0x2e, 0xd0 +.byte 0x6e, 0x2c, 0x91, 0xa3, 0x31, 0x5c, 0x3b, 0x46, 0xea, 0x7b, 0x04, 0x10, 0x56, 0x5e, 0x80, 0x1d +.byte 0xf5, 0xa5, 0x65, 0xe8, 0x82, 0xfc, 0xe2, 0x07, 0x8c, 0x62, 0x45, 0xf5, 0x20, 0xde, 0x46, 0x70 +.byte 0x86, 0xa1, 0xbc, 0x93, 0xd3, 0x1e, 0x74, 0xa6, 0x6c, 0xb0, 0x2c, 0xf7, 0x03, 0x0c, 0x88, 0x0c +.byte 0xcb, 0xd4, 0x72, 0x53, 0x86, 0xbc, 0x60, 0x46, 0xf3, 0x98, 0x6a, 0xc2, 0xf1, 0xbf, 0x43, 0xf9 +.byte 0x70, 0x20, 0x77, 0xca, 0x37, 0x41, 0x79, 0x55, 0x52, 0x63, 0x8d, 0x5b, 0x12, 0x9f, 0xc5, 0x68 +.byte 0xc4, 0x88, 0x9d, 0xac, 0xf2, 0x30, 0xab, 0xb7, 0xa3, 0x31, 0x97, 0x67, 0xad, 0x8f, 0x17, 0x0f +.byte 0x6c, 0xc7, 0x73, 0xed, 0x24, 0x94, 0x6b, 0xc8, 0x83, 0x9a, 0xd0, 0x9a, 0x37, 0x49, 0x04, 0xab +.byte 0xb1, 0x16, 0xc8, 0x6c, 0x49, 0x49, 0x2d, 0xab, 0xa1, 0xd0, 0x8c, 0x92, 0xf2, 0x41, 0x4a, 0x79 +.byte 0x21, 0x25, 0xdb, 0x63, 0xd7, 0xb6, 0x9c, 0xa7, 0x7e, 0x42, 0x69, 0xfb, 0x3a, 0x63, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x01, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20 +.byte 0x32, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd3, 0xb2, 0x4a, 0xcf, 0x7a, 0x47, 0xef, 0x75, 0x9b +.byte 0x23, 0xfa, 0x3a, 0x2f, 0xd6, 0x50, 0x45, 0x89, 0x35, 0x3a, 0xc6, 0x6b, 0xdb, 0xfe, 0xdb, 0x00 +.byte 0x68, 0xa8, 0xe0, 0x03, 0x11, 0x1d, 0x37, 0x50, 0x08, 0x9f, 0x4d, 0x4a, 0x68, 0x94, 0x35, 0xb3 +.byte 0x53, 0xd1, 0x94, 0x63, 0xa7, 0x20, 0x56, 0xaf, 0xde, 0x51, 0x78, 0xec, 0x2a, 0x3d, 0xf3, 0x48 +.byte 0x48, 0x50, 0x3e, 0x0a, 0xdf, 0x46, 0x55, 0x8b, 0x27, 0x6d, 0xc3, 0x10, 0x4d, 0x0d, 0x91, 0x52 +.byte 0x43, 0xd8, 0x87, 0xe0, 0x5d, 0x4e, 0x36, 0xb5, 0x21, 0xca, 0x5f, 0x39, 0x40, 0x04, 0x5f, 0x5b +.byte 0x7e, 0xcc, 0xa3, 0xc6, 0x2b, 0xa9, 0x40, 0x1e, 0xd9, 0x36, 0x84, 0xd6, 0x48, 0xf3, 0x92, 0x1e +.byte 0x34, 0x46, 0x20, 0x24, 0xc1, 0xa4, 0x51, 0x8e, 0x4a, 0x1a, 0xef, 0x50, 0x3f, 0x69, 0x5d, 0x19 +.byte 0x7f, 0x45, 0xc3, 0xc7, 0x01, 0x8f, 0x51, 0xc9, 0x23, 0xe8, 0x72, 0xae, 0xb4, 0xbc, 0x56, 0x09 +.byte 0x7f, 0x12, 0xcb, 0x1c, 0xb1, 0xaf, 0x29, 0x90, 0x0a, 0xc9, 0x55, 0xcc, 0x0f, 0xd3, 0xb4, 0x1a +.byte 0xed, 0x47, 0x35, 0x5a, 0x4a, 0xed, 0x9c, 0x73, 0x04, 0x21, 0xd0, 0xaa, 0xbd, 0x0c, 0x13, 0xb5 +.byte 0x00, 0xca, 0x26, 0x6c, 0xc4, 0x6b, 0x0c, 0x94, 0x5a, 0x95, 0x94, 0xda, 0x50, 0x9a, 0xf1, 0xff +.byte 0xa5, 0x2b, 0x66, 0x31, 0xa4, 0xc9, 0x38, 0xa0, 0xdf, 0x1d, 0x1f, 0xb8, 0x09, 0x2e, 0xf3, 0xa7 +.byte 0xe8, 0x67, 0x52, 0xab, 0x95, 0x1f, 0xe0, 0x46, 0x3e, 0xd8, 0xa4, 0xc3, 0xca, 0x5a, 0xc5, 0x31 +.byte 0x80, 0xe8, 0x48, 0x9a, 0x9f, 0x94, 0x69, 0xfe, 0x19, 0xdd, 0xd8, 0x73, 0x7c, 0x81, 0xca, 0x96 +.byte 0xde, 0x8e, 0xed, 0xb3, 0x32, 0x05, 0x65, 0x84, 0x34, 0xe6, 0xe6, 0xfd, 0x57, 0x10, 0xb5, 0x5f +.byte 0x76, 0xbf, 0x2f, 0xb0, 0x10, 0x0d, 0xc5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02 +.byte 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x21, 0x49, 0x64 +.byte 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53 +.byte 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xb6, 0x22, 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a, 0xfb, 0x27, 0x76, 0xe4, 0xf2 +.byte 0x3f, 0x8a, 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0, 0xa9, 0xc3, 0x31, 0x6b, 0xa8 +.byte 0x77, 0x76, 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb, 0x55, 0x58, 0xbb, 0x7a, 0xf8 +.byte 0xbc, 0x65, 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62, 0x76, 0x1e, 0x11, 0xee, 0x08 +.byte 0x14, 0xd1, 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f, 0x5e, 0xdb, 0xcb, 0x73, 0x41 +.byte 0xae, 0xbc, 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b, 0x4b, 0xc2, 0x2d, 0x9d, 0xe4 +.byte 0xa1, 0x9b, 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4, 0x24, 0x35, 0x07, 0x9f, 0x9c +.byte 0xb4, 0xc9, 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0, 0x83, 0xf3, 0x4f, 0xc7, 0x2d +.byte 0xa5, 0xc8, 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58, 0x5a, 0xe4, 0x8d, 0x1b, 0x9a +.byte 0xab, 0x9e, 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a, 0x97, 0x2e, 0xf3, 0x53, 0x77 +.byte 0xb9, 0x44, 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d, 0x9a, 0x6f, 0x6d, 0x48, 0x48 +.byte 0x61, 0xca, 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f, 0xab, 0x2f, 0x6b, 0x83, 0x72 +.byte 0xef, 0x75, 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63, 0xc6, 0x4d, 0xcd, 0xac, 0x66 +.byte 0x31, 0xcd, 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4, 0x7a, 0xef, 0x60, 0x50, 0xb2 +.byte 0xcb, 0xca, 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39, 0x25, 0xe8, 0x39, 0x66, 0xe4 +.byte 0x98, 0x7a, 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad, 0xf1, 0xb0, 0xca, 0x3e, 0x06 +.byte 0x0f, 0x7b, 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb, 0xa8, 0x8c, 0x71, 0xf4, 0xd5 +.byte 0xb5, 0x91, 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17, 0xb1, 0x97, 0x4c, 0x50, 0x3d +.byte 0xb1, 0x95, 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf, 0x01, 0x67, 0xa2, 0x5e, 0x7b +.byte 0xa6, 0x5c, 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa, 0x44, 0x51, 0x66, 0xcc, 0x7d +.byte 0x76, 0x03, 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d, 0x6b, 0x8a, 0x61, 0xf9, 0xbc +.byte 0xf6, 0xee, 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a, 0x1e, 0x5b, 0x42, 0x1c, 0x8b +.byte 0x56, 0x2f, 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6, 0xf8, 0xaa, 0x3c, 0x92, 0x8e +.byte 0x69, 0xb6, 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38, 0x94, 0x54, 0xe8, 0xea, 0xdc +.byte 0x9e, 0x3d, 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa, 0xc5, 0x40, 0x4c, 0x54, 0xab +.byte 0xb2, 0xb4, 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d, 0xbd, 0x65, 0x5f, 0xef, 0x88 +.byte 0x35, 0x2a, 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d, 0x7c, 0x98, 0x41, 0x69, 0x46 +.byte 0x0f, 0x43, 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd, 0xca, 0x4b, 0xd9, 0x4c, 0x90 +.byte 0x46, 0xab, 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28, 0x5f, 0x1c, 0xc2, 0xa2, 0xab +.byte 0x72, 0x17, 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d, 0x7f, 0xda, 0x19, 0x44, 0xe4 +.byte 0x62, 0x72, 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f, 0x95, 0x72, 0xed, 0x6d, 0x5f +.byte 0xf7, 0x48, 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23, 0x84, 0x10, 0x1b, 0x01, 0xe7 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1c, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x34, 0x30, 0x39, 0x36 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0xd0, 0xf4, 0xc9, 0x79, 0x11, 0x9d +.byte 0xfd, 0xfc, 0x66, 0x81, 0xe7, 0xcc, 0xd5, 0xe4, 0xbc, 0xec, 0x81, 0x3e, 0x6a, 0x35, 0x8e, 0x2e +.byte 0xb7, 0xe7, 0xde, 0xaf, 0xf9, 0x07, 0x4d, 0xcf, 0x30, 0x9d, 0xea, 0x09, 0x0b, 0x99, 0xbd, 0x6c +.byte 0x57, 0xda, 0x18, 0x4a, 0xb8, 0x78, 0xac, 0x3a, 0x39, 0xa8, 0xa6, 0x48, 0xac, 0x2e, 0x72, 0xe5 +.byte 0xbd, 0xeb, 0xf1, 0x1a, 0xcd, 0xe7, 0xa4, 0x03, 0xa9, 0x3f, 0x11, 0xb4, 0xd8, 0x2f, 0x89, 0x16 +.byte 0xfb, 0x94, 0x01, 0x3d, 0xbb, 0x2f, 0xf8, 0x13, 0x05, 0xa1, 0x78, 0x1c, 0x8e, 0x28, 0xe0, 0x45 +.byte 0xe0, 0x83, 0xf4, 0x59, 0x1b, 0x95, 0xb3, 0xae, 0x7e, 0x03, 0x45, 0xe5, 0xbe, 0xc2, 0x42, 0xfe +.byte 0xee, 0xf2, 0x3c, 0xb6, 0x85, 0x13, 0x98, 0x32, 0x9d, 0x16, 0xa8, 0x29, 0xc2, 0x0b, 0x1c, 0x38 +.byte 0xdc, 0x9f, 0x31, 0x77, 0x5c, 0xbf, 0x27, 0xa3, 0xfc, 0x27, 0xac, 0xb7, 0x2b, 0xbd, 0x74, 0x9b +.byte 0x17, 0x2d, 0xf2, 0x81, 0xda, 0x5d, 0xb0, 0xe1, 0x23, 0x17, 0x3e, 0x88, 0x4a, 0x12, 0x23, 0xd0 +.byte 0xea, 0xcf, 0x9d, 0xde, 0x03, 0x17, 0xb1, 0x42, 0x4a, 0xa0, 0x16, 0x4c, 0xa4, 0x6d, 0x93, 0xe9 +.byte 0x3f, 0x3a, 0xee, 0x3a, 0x7c, 0x9d, 0x58, 0x9d, 0xf4, 0x4e, 0x8f, 0xfc, 0x3b, 0x23, 0xc8, 0x6d +.byte 0xb8, 0xe2, 0x05, 0xda, 0xcc, 0xeb, 0xec, 0xc3, 0x31, 0xf4, 0xd7, 0xa7, 0x29, 0x54, 0x80, 0xcf +.byte 0x44, 0x5b, 0x4c, 0x6f, 0x30, 0x9e, 0xf3, 0xcc, 0xdd, 0x1f, 0x94, 0x43, 0x9d, 0x4d, 0x7f, 0x70 +.byte 0x70, 0x0d, 0xd4, 0x3a, 0xd1, 0x37, 0xf0, 0x6c, 0x9d, 0x9b, 0xc0, 0x14, 0x93, 0x58, 0xef, 0xcd +.byte 0x41, 0x38, 0x75, 0xbc, 0x13, 0x03, 0x95, 0x7c, 0x7f, 0xe3, 0x5c, 0xe9, 0xd5, 0x0d, 0xd5, 0xe2 +.byte 0x7c, 0x10, 0x62, 0xaa, 0x6b, 0xf0, 0x3d, 0x76, 0xf3, 0x3f, 0xa3, 0xe8, 0xb0, 0xc1, 0xfd, 0xef +.byte 0xaa, 0x57, 0x4d, 0xac, 0x86, 0xa7, 0x18, 0xb4, 0x29, 0xc1, 0x2c, 0x0e, 0xbf, 0x64, 0xbe, 0x29 +.byte 0x8c, 0xd8, 0x02, 0x2d, 0xcd, 0x5c, 0x2f, 0xf2, 0x7f, 0xef, 0x15, 0xf4, 0x0c, 0x15, 0xac, 0x0a +.byte 0xb0, 0xf1, 0xd3, 0x0d, 0x4f, 0x6a, 0x4d, 0x77, 0x97, 0x01, 0xa0, 0xf1, 0x66, 0xb7, 0xb7, 0xce +.byte 0xef, 0xce, 0xec, 0xec, 0xa5, 0x75, 0xca, 0xac, 0xe3, 0xe1, 0x63, 0xf7, 0xb8, 0xa1, 0x04, 0xc8 +.byte 0xbc, 0x7b, 0x3f, 0x5d, 0x2d, 0x16, 0x22, 0x56, 0xed, 0x48, 0x49, 0xfe, 0xa7, 0x2f, 0x79, 0x30 +.byte 0x25, 0x9b, 0xba, 0x6b, 0x2d, 0x3f, 0x9d, 0x3b, 0xc4, 0x17, 0xe7, 0x1d, 0x2e, 0xfb, 0xf2, 0xcf +.byte 0xa6, 0xfc, 0xe3, 0x14, 0x2c, 0x96, 0x98, 0x21, 0x8c, 0xb4, 0x91, 0xe9, 0x19, 0x60, 0x83, 0xf2 +.byte 0x30, 0x2b, 0x06, 0x73, 0x50, 0xd5, 0x98, 0x3b, 0x06, 0xe9, 0xc7, 0x8a, 0x0c, 0x60, 0x8c, 0x28 +.byte 0xf8, 0x52, 0x9b, 0x6e, 0xe1, 0xf6, 0x4d, 0xbb, 0x06, 0x24, 0x9b, 0xd7, 0x2b, 0x26, 0x3f, 0xfd +.byte 0x2a, 0x2f, 0x71, 0xf5, 0xd6, 0x24, 0xbe, 0x7f, 0x31, 0x9e, 0x0f, 0x6d, 0xe8, 0x8f, 0x4f, 0x4d +.byte 0xa3, 0x3f, 0xff, 0x35, 0xea, 0xdf, 0x49, 0x5e, 0x41, 0x8f, 0x86, 0xf9, 0xf1, 0x77, 0x79, 0x4b +.byte 0x1b, 0xb4, 0xa3, 0x5e, 0x2f, 0xfb, 0x46, 0x02, 0xd0, 0x66, 0x13, 0x5e, 0x5e, 0x85, 0x4f, 0xce +.byte 0xd8, 0x70, 0x88, 0x7b, 0xce, 0x01, 0xb5, 0x96, 0x97, 0xd7, 0xcd, 0x7d, 0xfd, 0x82, 0xf8, 0xc2 +.byte 0x24, 0xc1, 0xca, 0x01, 0x39, 0x4f, 0x8d, 0xa2, 0xc1, 0x14, 0x40, 0x1f, 0x9c, 0x66, 0xd5, 0x0c +.byte 0x09, 0x46, 0xd6, 0xf2, 0xd0, 0xd1, 0x48, 0x76, 0x56, 0x3a, 0x43, 0xcb, 0xb6, 0x0a, 0x11, 0x39 +.byte 0xba, 0x8c, 0x13, 0x6c, 0x06, 0xb5, 0x9e, 0xcf, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00 +.byte 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e +.byte 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70 +.byte 0x61, 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37 +.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61 +.byte 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xd7, 0xc7, 0x5e, 0xf7, 0xc1, 0x07, 0xd4, 0x77, 0xfb, 0x43, 0x21, 0xf4, 0xf4 +.byte 0xf5, 0x69, 0xe4, 0xee, 0x32, 0x01, 0xdb, 0xa3, 0x86, 0x1f, 0xe4, 0x59, 0x0d, 0xba, 0xe7, 0x75 +.byte 0x83, 0x52, 0xeb, 0xea, 0x1c, 0x61, 0x15, 0x48, 0xbb, 0x1d, 0x07, 0xca, 0x8c, 0xae, 0xb0, 0xdc +.byte 0x96, 0x9d, 0xea, 0xc3, 0x60, 0x92, 0x86, 0x82, 0x28, 0x73, 0x9c, 0x56, 0x06, 0xff, 0x4b, 0x64 +.byte 0xf0, 0x0c, 0x2a, 0x37, 0x49, 0xb5, 0xe5, 0xcf, 0x0c, 0x7c, 0xee, 0xf1, 0x4a, 0xbb, 0x73, 0x30 +.byte 0x65, 0xf3, 0xd5, 0x2f, 0x83, 0xb6, 0x7e, 0xe3, 0xe7, 0xf5, 0x9e, 0xab, 0x60, 0xf9, 0xd3, 0xf1 +.byte 0x9d, 0x92, 0x74, 0x8a, 0xe4, 0x1c, 0x96, 0xac, 0x5b, 0x80, 0xe9, 0xb5, 0xf4, 0x31, 0x87, 0xa3 +.byte 0x51, 0xfc, 0xc7, 0x7e, 0xa1, 0x6f, 0x8e, 0x53, 0x77, 0xd4, 0x97, 0xc1, 0x55, 0x33, 0x92, 0x3e +.byte 0x18, 0x2f, 0x75, 0xd4, 0xad, 0x86, 0x49, 0xcb, 0x95, 0xaf, 0x54, 0x06, 0x6c, 0xd8, 0x06, 0x13 +.byte 0x8d, 0x5b, 0xff, 0xe1, 0x26, 0x19, 0x59, 0xc0, 0x24, 0xba, 0x81, 0x71, 0x79, 0x90, 0x44, 0x50 +.byte 0x68, 0x24, 0x94, 0x5f, 0xb8, 0xb3, 0x11, 0xf1, 0x29, 0x41, 0x61, 0xa3, 0x41, 0xcb, 0x23, 0x36 +.byte 0xd5, 0xc1, 0xf1, 0x32, 0x50, 0x10, 0x4e, 0x7f, 0xf4, 0x86, 0x93, 0xec, 0x84, 0xd3, 0x8e, 0xbc +.byte 0x4b, 0xbf, 0x5c, 0x01, 0x4e, 0x07, 0x3d, 0xdc, 0x14, 0x8a, 0x94, 0x0a, 0xa4, 0xea, 0x73, 0xfb +.byte 0x0b, 0x51, 0xe8, 0x13, 0x07, 0x18, 0xfa, 0x0e, 0xf1, 0x2b, 0xd1, 0x54, 0x15, 0x7d, 0x3c, 0xe1 +.byte 0xf7, 0xb4, 0x19, 0x42, 0x67, 0x62, 0x5e, 0x77, 0xe0, 0xa2, 0x55, 0xec, 0xb6, 0xd9, 0x69, 0x17 +.byte 0xd5, 0x3a, 0xaf, 0x44, 0xed, 0x4a, 0xc5, 0x9e, 0xe4, 0x7a, 0x27, 0x7c, 0xe5, 0x75, 0xd7, 0xaa +.byte 0xcb, 0x25, 0xe7, 0xdf, 0x6b, 0x0a, 0xdb, 0x0f, 0x4d, 0x93, 0x4e, 0xa8, 0xa0, 0xcd, 0x7b, 0x2e +.byte 0xf2, 0x59, 0x01, 0x6a, 0xb7, 0x0d, 0xb8, 0x07, 0x81, 0x7e, 0x8b, 0x38, 0x1b, 0x38, 0xe6, 0x0a +.byte 0x57, 0x99, 0x3d, 0xee, 0x21, 0xe8, 0xa3, 0xf5, 0x0c, 0x16, 0xdd, 0x8b, 0xec, 0x34, 0x8e, 0x9c +.byte 0x2a, 0x1c, 0x00, 0x15, 0x17, 0x8d, 0x68, 0x83, 0xd2, 0x70, 0x9f, 0x18, 0x08, 0xcd, 0x11, 0x68 +.byte 0xd5, 0xc9, 0x6b, 0x52, 0xcd, 0xc4, 0x46, 0x8f, 0xdc, 0xb5, 0xf3, 0xd8, 0x57, 0x73, 0x1e, 0xe9 +.byte 0x94, 0x39, 0x04, 0xbf, 0xd3, 0xde, 0x38, 0xde, 0xb4, 0x53, 0xec, 0x69, 0x1c, 0xa2, 0x7e, 0xc4 +.byte 0x8f, 0xe4, 0x1b, 0x70, 0xad, 0xf2, 0xa2, 0xf9, 0xfb, 0xf7, 0x16, 0x64, 0x66, 0x69, 0x9f, 0x49 +.byte 0x51, 0xa2, 0xe2, 0x15, 0x18, 0x67, 0x06, 0x4a, 0x7f, 0xd5, 0x6c, 0xb5, 0x4d, 0xb3, 0x33, 0xe0 +.byte 0x61, 0xeb, 0x5d, 0xbe, 0xe9, 0x98, 0x0f, 0x32, 0xd7, 0x1d, 0x4b, 0x3c, 0x2e, 0x5a, 0x01, 0x52 +.byte 0x91, 0x09, 0xf2, 0xdf, 0xea, 0x8d, 0xd8, 0x06, 0x40, 0x63, 0xaa, 0x11, 0xe4, 0xfe, 0xc3, 0x37 +.byte 0x9e, 0x14, 0x52, 0x3f, 0xf4, 0xe2, 0xcc, 0xf2, 0x61, 0x93, 0xd1, 0xfd, 0x67, 0x6b, 0xd7, 0x52 +.byte 0xae, 0xbf, 0x68, 0xab, 0x40, 0x43, 0xa0, 0x57, 0x35, 0x53, 0x78, 0xf0, 0x53, 0xf8, 0x61, 0x42 +.byte 0x07, 0x64, 0xc6, 0xd7, 0x6f, 0x9b, 0x4c, 0x38, 0x0d, 0x63, 0xac, 0x62, 0xaf, 0x36, 0x8b, 0xa2 +.byte 0x73, 0x0a, 0x0d, 0xf5, 0x21, 0xbd, 0x74, 0xaa, 0x4d, 0xea, 0x72, 0x03, 0x49, 0xdb, 0xc7, 0x5f +.byte 0x1d, 0x62, 0x63, 0xc7, 0xfd, 0xdd, 0x91, 0xec, 0x33, 0xee, 0xf5, 0x6d, 0xb4, 0x6e, 0x30, 0x68 +.byte 0xde, 0xc8, 0xd6, 0x26, 0xb0, 0x75, 0x5e, 0x7b, 0xb4, 0x07, 0x20, 0x98, 0xa1, 0x76, 0x32, 0xb8 +.byte 0x4d, 0x6c, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x41, 0x53 +.byte 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61 +.byte 0x73, 0x73, 0x20, 0x33, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa5, 0xda, 0x0a +.byte 0x95, 0x16, 0x50, 0xe3, 0x95, 0xf2, 0x5e, 0x9d, 0x76, 0x31, 0x06, 0x32, 0x7a, 0x9b, 0xf1, 0x10 +.byte 0x76, 0xb8, 0x00, 0x9a, 0xb5, 0x52, 0x36, 0xcd, 0x24, 0x47, 0xb0, 0x9f, 0x18, 0x64, 0xbc, 0x9a +.byte 0xf6, 0xfa, 0xd5, 0x79, 0xd8, 0x90, 0x62, 0x4c, 0x22, 0x2f, 0xde, 0x38, 0x3d, 0xd6, 0xe0, 0xa8 +.byte 0xe9, 0x1c, 0x2c, 0xdb, 0x78, 0x11, 0xe9, 0x8e, 0x68, 0x51, 0x15, 0x72, 0xc7, 0xf3, 0x33, 0x87 +.byte 0xe4, 0xa0, 0x5d, 0x0b, 0x5c, 0xe0, 0x57, 0x07, 0x2a, 0x30, 0xf5, 0xcd, 0xc4, 0x37, 0x77, 0x28 +.byte 0x4d, 0x18, 0x91, 0xe6, 0xbf, 0xd5, 0x52, 0xfd, 0x71, 0x2d, 0x70, 0x3e, 0xe7, 0xc6, 0xc4, 0x8a +.byte 0xe3, 0xf0, 0x28, 0x0b, 0xf4, 0x76, 0x98, 0xa1, 0x8b, 0x87, 0x55, 0xb2, 0x3a, 0x13, 0xfc, 0xb7 +.byte 0x3e, 0x27, 0x37, 0x8e, 0x22, 0xe3, 0xa8, 0x4f, 0x2a, 0xef, 0x60, 0xbb, 0x3d, 0xb7, 0x39, 0xc3 +.byte 0x0e, 0x01, 0x47, 0x99, 0x5d, 0x12, 0x4f, 0xdb, 0x43, 0xfa, 0x57, 0xa1, 0xed, 0xf9, 0x9d, 0xbe +.byte 0x11, 0x47, 0x26, 0x5b, 0x13, 0x98, 0xab, 0x5d, 0x16, 0x8a, 0xb0, 0x37, 0x1c, 0x57, 0x9d, 0x45 +.byte 0xff, 0x88, 0x96, 0x36, 0xbf, 0xbb, 0xca, 0x07, 0x7b, 0x6f, 0x87, 0x63, 0xd7, 0xd0, 0x32, 0x6a +.byte 0xd6, 0x5d, 0x6c, 0x0c, 0xf1, 0xb3, 0x6e, 0x39, 0xe2, 0x6b, 0x31, 0x2e, 0x39, 0x00, 0x27, 0x14 +.byte 0xde, 0x38, 0xc0, 0xec, 0x19, 0x66, 0x86, 0x12, 0xe8, 0x9d, 0x72, 0x16, 0x13, 0x64, 0x52, 0xc7 +.byte 0xa9, 0x37, 0x1c, 0xfd, 0x82, 0x30, 0xed, 0x84, 0x18, 0x1d, 0xf4, 0xae, 0x5c, 0xff, 0x70, 0x13 +.byte 0x00, 0xeb, 0xb1, 0xf5, 0x33, 0x7a, 0x4b, 0xd6, 0x55, 0xf8, 0x05, 0x8d, 0x4b, 0x69, 0xb0, 0xf5 +.byte 0xb3, 0x28, 0x36, 0x5c, 0x14, 0xc4, 0x51, 0x73, 0x4d, 0x6b, 0x0b, 0xf1, 0x34, 0x07, 0xdb, 0x17 +.byte 0x39, 0xd7, 0xdc, 0x28, 0x7b, 0x6b, 0xf5, 0x9f, 0xf3, 0x2e, 0xc1, 0x4f, 0x17, 0x2a, 0x10, 0xf3 +.byte 0xcc, 0xca, 0xe8, 0xeb, 0xfd, 0x6b, 0xab, 0x2e, 0x9a, 0x9f, 0x2d, 0x82, 0x6e, 0x04, 0xd4, 0x52 +.byte 0x01, 0x93, 0x2d, 0x3d, 0x86, 0xfc, 0x7e, 0xfc, 0xdf, 0xef, 0x42, 0x1d, 0xa6, 0x6b, 0xef, 0xb9 +.byte 0x20, 0xc6, 0xf7, 0xbd, 0xa0, 0xa7, 0x95, 0xfd, 0xa7, 0xe6, 0x89, 0x24, 0xd8, 0xcc, 0x8c, 0x34 +.byte 0x6c, 0xe2, 0x23, 0x2f, 0xd9, 0x12, 0x1a, 0x21, 0xb9, 0x55, 0x91, 0x6f, 0x0b, 0x91, 0x79, 0x19 +.byte 0x0c, 0xad, 0x40, 0x88, 0x0b, 0x70, 0xe2, 0x7a, 0xd2, 0x0e, 0xd8, 0x68, 0x48, 0xbb, 0x82, 0x13 +.byte 0x39, 0x10, 0x58, 0xe9, 0xd8, 0x2a, 0x07, 0xc6, 0x12, 0xdb, 0x58, 0xdb, 0xd2, 0x3b, 0x55, 0x10 +.byte 0x47, 0x05, 0x15, 0x67, 0x62, 0x7e, 0x18, 0x63, 0xa6, 0x46, 0x3f, 0x09, 0x0e, 0x54, 0x32, 0x5e +.byte 0xbf, 0x0d, 0x62, 0x7a, 0x27, 0xef, 0x80, 0xe8, 0xdb, 0xd9, 0x4b, 0x06, 0x5a, 0x37, 0x5a, 0x25 +.byte 0xd0, 0x08, 0x12, 0x77, 0xd4, 0x6f, 0x09, 0x50, 0x97, 0x3d, 0xc8, 0x1d, 0xc3, 0xdf, 0x8c, 0x45 +.byte 0x30, 0x56, 0xc6, 0xd3, 0x64, 0xab, 0x66, 0xf3, 0xc0, 0x5e, 0x96, 0x9c, 0xc3, 0xc4, 0xef, 0xc3 +.byte 0x7c, 0x6b, 0x8b, 0x3a, 0x79, 0x7f, 0xb3, 0x49, 0xcf, 0x3d, 0xe2, 0x89, 0x9f, 0xa0, 0x30, 0x4b +.byte 0x85, 0xb9, 0x9c, 0x94, 0x24, 0x79, 0x8f, 0x7d, 0x6b, 0xa9, 0x45, 0x68, 0x0f, 0x2b, 0xd0, 0xf1 +.byte 0xda, 0x1c, 0xcb, 0x69, 0xb8, 0xca, 0x49, 0x62, 0x6d, 0xc8, 0xd0, 0x63, 0x62, 0xdd, 0x60, 0x0f +.byte 0x58, 0xaa, 0x8f, 0xa1, 0xbc, 0x05, 0xa5, 0x66, 0xa2, 0xcf, 0x1b, 0x76, 0xb2, 0x84, 0x64, 0xb1 +.byte 0x4c, 0x39, 0x52, 0xc0, 0x30, 0xba, 0xf0, 0x8c, 0x4b, 0x02, 0xb0, 0xb6, 0xb7, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x50, 0x00, 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09 +.byte 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75 +.byte 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x4b, 0x36 +.byte 0xe9, 0xae, 0x57, 0x5e, 0xa8, 0x70, 0xd7, 0xd0, 0x8f, 0x74, 0x62, 0x77, 0xc3, 0x5e, 0x7a, 0xaa +.byte 0xe5, 0xb6, 0xa2, 0xf1, 0x78, 0xfd, 0x02, 0x7e, 0x57, 0xdd, 0x91, 0x79, 0x9c, 0x6c, 0xb9, 0x52 +.byte 0x88, 0x54, 0xbc, 0x2f, 0x04, 0xbe, 0xb8, 0xcd, 0xf6, 0x10, 0xd1, 0x29, 0xec, 0xb5, 0xd0, 0xa0 +.byte 0xc3, 0xf0, 0x89, 0x70, 0x19, 0xbb, 0x51, 0x65, 0xc5, 0x43, 0x9c, 0xc3, 0x9b, 0x63, 0x9d, 0x20 +.byte 0x83, 0x3e, 0x06, 0x0b, 0xa6, 0x42, 0x44, 0x85, 0x11, 0xa7, 0x4a, 0x3a, 0x2d, 0xe9, 0xd6, 0x68 +.byte 0x2f, 0x48, 0x4e, 0x53, 0x2b, 0x07, 0x3f, 0x4d, 0xbd, 0xb9, 0xac, 0x77, 0x39, 0x57, 0x50, 0x00 +.byte 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d +.byte 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22 +.byte 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63 +.byte 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d +.byte 0x30, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x78, 0x30, 0x81, 0xe8, 0x63, 0x1e +.byte 0xe5, 0xeb, 0x71, 0x51, 0x0f, 0xf7, 0x07, 0x07, 0xca, 0x39, 0x99, 0x7c, 0x4e, 0xd5, 0x0f, 0xcc +.byte 0x30, 0x30, 0x0b, 0x8f, 0x66, 0x93, 0x3e, 0xcf, 0xbd, 0xc5, 0x86, 0xbd, 0xf9, 0xb1, 0xb7, 0xb4 +.byte 0x3e, 0xb4, 0x07, 0xc8, 0xf3, 0x96, 0x31, 0xf3, 0xed, 0xa4, 0x4f, 0xf8, 0xa3, 0x4e, 0x8d, 0x29 +.byte 0x15, 0x58, 0xb8, 0xd5, 0x6f, 0x7f, 0xee, 0x6c, 0x22, 0xb5, 0xb0, 0xaf, 0x48, 0x45, 0x0a, 0xbd +.byte 0xa8, 0x49, 0x94, 0xbf, 0x84, 0x43, 0xb0, 0xdb, 0x84, 0x4a, 0x03, 0x23, 0x19, 0x67, 0x6a, 0x6f +.byte 0xc1, 0x6e, 0xbc, 0x06, 0x39, 0x37, 0xd1, 0x88, 0x22, 0xf7, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70 +.byte 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d +.byte 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x31, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0 +.byte 0x48, 0x65, 0xa3, 0x0d, 0x1d, 0x42, 0xe3, 0x91, 0x6d, 0x9d, 0x84, 0xa4, 0x61, 0x96, 0x12, 0xc2 +.byte 0xed, 0xc3, 0xda, 0x23, 0x34, 0x19, 0x76, 0xf6, 0xea, 0xfd, 0x55, 0x5a, 0xf6, 0x55, 0x01, 0x53 +.byte 0x0f, 0xf2, 0xcc, 0x8c, 0x97, 0x4f, 0xb9, 0x50, 0xcb, 0xb3, 0x01, 0x44, 0x56, 0x96, 0xfd, 0x9b +.byte 0x28, 0xec, 0x7b, 0x74, 0x0b, 0xe7, 0x42, 0x6b, 0x55, 0xce, 0xc9, 0x61, 0xb2, 0xe8, 0xad, 0x40 +.byte 0x3c, 0xba, 0xb9, 0x41, 0x0a, 0x05, 0x4f, 0x1b, 0x26, 0x85, 0x8f, 0x43, 0xb5, 0x40, 0xb5, 0x85 +.byte 0xd1, 0xd4, 0x71, 0xdc, 0x83, 0x41, 0xf3, 0xf6, 0x45, 0xc7, 0x80, 0xa2, 0x84, 0x50, 0x97, 0x46 +.byte 0xce, 0xa0, 0x0c, 0xc4, 0x60, 0x56, 0x04, 0x1d, 0x07, 0x5b, 0x46, 0xa5, 0x0e, 0xb2, 0x4b, 0xa4 +.byte 0x0e, 0xa5, 0x7c, 0xee, 0xf8, 0xd4, 0x62, 0x03, 0xb9, 0x93, 0x6a, 0x8a, 0x14, 0xb8, 0x70, 0xf8 +.byte 0x2e, 0x82, 0x46, 0x38, 0x23, 0x0e, 0x74, 0xc7, 0x6b, 0x41, 0xb7, 0xd0, 0x29, 0xa3, 0x9d, 0x80 +.byte 0xb0, 0x7e, 0x77, 0x93, 0x63, 0x42, 0xfb, 0x34, 0x83, 0x3b, 0x73, 0xa3, 0x5a, 0x21, 0x36, 0xeb +.byte 0x47, 0xfa, 0x18, 0x17, 0xd9, 0xba, 0x66, 0xc2, 0x93, 0xa4, 0x8f, 0xfc, 0x5d, 0xa4, 0xad, 0xfc +.byte 0x50, 0x6a, 0x95, 0xac, 0xbc, 0x24, 0x33, 0xd1, 0xbd, 0x88, 0x7f, 0x86, 0xf5, 0xf5, 0xb2, 0x73 +.byte 0x2a, 0x8f, 0x7c, 0xaf, 0x08, 0xf2, 0x1a, 0x98, 0x3f, 0xa9, 0x81, 0x65, 0x3f, 0xc1, 0x8c, 0x89 +.byte 0xc5, 0x96, 0x30, 0x9a, 0x0a, 0xcf, 0xf4, 0xd4, 0xc8, 0x34, 0xed, 0x9d, 0x2f, 0xbc, 0x8d, 0x38 +.byte 0x86, 0x53, 0xee, 0x97, 0x9f, 0xa9, 0xb2, 0x63, 0x94, 0x17, 0x8d, 0x0f, 0xdc, 0x66, 0x2a, 0x7c +.byte 0x52, 0x51, 0x75, 0xcb, 0x99, 0x8e, 0xe8, 0x3d, 0x5c, 0xbf, 0x9e, 0x3b, 0x28, 0x8d, 0x83, 0x02 +.byte 0x0f, 0xa9, 0x9f, 0x72, 0xe2, 0x2c, 0x2b, 0xb3, 0xdc, 0x66, 0x97, 0x00, 0x40, 0xd0, 0xa4, 0x54 +.byte 0x8e, 0x9b, 0x5d, 0x7b, 0x45, 0x36, 0x26, 0xd6, 0x72, 0x43, 0xeb, 0xcf, 0xc0, 0xea, 0x0d, 0xdc +.byte 0xce, 0x12, 0xe6, 0x7d, 0x38, 0x9f, 0x05, 0x27, 0xa8, 0x97, 0x3e, 0xe9, 0x51, 0xc6, 0x6c, 0x05 +.byte 0x28, 0xc1, 0x02, 0x0f, 0xe9, 0x18, 0x6d, 0xec, 0xbd, 0x9c, 0x06, 0xd4, 0xa7, 0x49, 0xf4, 0x54 +.byte 0x05, 0x6b, 0x6c, 0x30, 0xf1, 0xeb, 0x03, 0xd5, 0xea, 0x3d, 0x6a, 0x76, 0xc2, 0xcb, 0x1a, 0x28 +.byte 0x49, 0x4d, 0x7f, 0x64, 0xe0, 0xfa, 0x2b, 0xda, 0x73, 0x83, 0x81, 0xff, 0x91, 0x03, 0xbd, 0x94 +.byte 0xbb, 0xe4, 0xb8, 0x8e, 0x9c, 0x32, 0x63, 0xcd, 0x9f, 0xbb, 0x68, 0x81, 0xb1, 0x84, 0x5b, 0xaf +.byte 0x36, 0xbf, 0x77, 0xee, 0x1d, 0x7f, 0xf7, 0x49, 0x9b, 0x52, 0xec, 0xd2, 0x77, 0x5a, 0x7d, 0x91 +.byte 0x9d, 0x4d, 0xc2, 0x39, 0x2d, 0xe4, 0xba, 0x82, 0xf8, 0x6f, 0xf2, 0x4e, 0x1e, 0x0f, 0x4e, 0xe6 +.byte 0x3f, 0x59, 0xa5, 0x23, 0xdc, 0x3d, 0x87, 0xa8, 0x28, 0x58, 0x28, 0xd1, 0xf1, 0x1b, 0x36, 0xdb +.byte 0x4f, 0xc4, 0xff, 0xe1, 0x8c, 0x5b, 0x72, 0x8c, 0xc7, 0x26, 0x03, 0x27, 0xa3, 0x39, 0x0a, 0x01 +.byte 0xaa, 0xc0, 0xb2, 0x31, 0x60, 0x83, 0x22, 0xa1, 0x4f, 0x12, 0x09, 0x01, 0x11, 0xaf, 0x34, 0xd4 +.byte 0xcf, 0xd7, 0xae, 0x62, 0xd3, 0x05, 0x07, 0xb4, 0x31, 0x75, 0xe0, 0x0d, 0x6d, 0x57, 0x4f, 0x69 +.byte 0x87, 0xf9, 0x57, 0xa9, 0xba, 0x15, 0xf6, 0xc8, 0x52, 0x6d, 0xa1, 0xcb, 0x9c, 0x1f, 0xe5, 0xfc +.byte 0x78, 0xa8, 0x35, 0x9a, 0x9f, 0x41, 0x14, 0xce, 0xa5, 0xb4, 0xce, 0x94, 0x08, 0x1c, 0x09, 0xad +.byte 0x56, 0xe5, 0xda, 0xb6, 0x49, 0x9a, 0x4a, 0xea, 0x63, 0x18, 0x53, 0x9c, 0x2c, 0x2e, 0xc3, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20 +.byte 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xe1, 0xfa, 0x0e, 0xfb, 0x68, 0x00, 0x12 +.byte 0xc8, 0x4d, 0xd5, 0xac, 0x22, 0xc4, 0x35, 0x01, 0x3b, 0xc5, 0x54, 0xe5, 0x59, 0x76, 0x63, 0xa5 +.byte 0x7f, 0xeb, 0xc1, 0xc4, 0x6a, 0x98, 0xbd, 0x32, 0x8d, 0x17, 0x80, 0xeb, 0x5d, 0xba, 0xd1, 0x62 +.byte 0x3d, 0x25, 0x23, 0x19, 0x35, 0x14, 0xe9, 0x7f, 0x89, 0xa7, 0x1b, 0x62, 0x3c, 0xd6, 0x50, 0xe7 +.byte 0x34, 0x95, 0x03, 0x32, 0xb1, 0xb4, 0x93, 0x22, 0x3d, 0xa7, 0xe2, 0xb1, 0xed, 0xe6, 0x7b, 0x4e +.byte 0x2e, 0x87, 0x9b, 0x0d, 0x33, 0x75, 0x0a, 0xde, 0xaa, 0x35, 0xe7, 0x7e, 0xe5, 0x36, 0x98, 0xa2 +.byte 0xae, 0x25, 0x9e, 0x95, 0xb3, 0x32, 0x96, 0xa4, 0x2b, 0x58, 0x1e, 0xef, 0x3f, 0xfe, 0x62, 0x34 +.byte 0x48, 0x51, 0xd1, 0xb4, 0x8d, 0x42, 0xad, 0x60, 0xda, 0x49, 0x6a, 0x95, 0x70, 0xdd, 0xd2, 0x00 +.byte 0xe2, 0xcc, 0x57, 0x63, 0x02, 0x7b, 0x96, 0xdd, 0x49, 0x97, 0x5b, 0x92, 0x4e, 0x95, 0xd3, 0xf9 +.byte 0xcb, 0x29, 0x1f, 0x18, 0x4a, 0xf8, 0x01, 0x2a, 0xd2, 0x63, 0x09, 0x6e, 0x24, 0xe9, 0x89, 0xd2 +.byte 0xe5, 0xc7, 0x22, 0x4c, 0xdc, 0x73, 0x86, 0x47, 0x00, 0xaa, 0x0d, 0x88, 0x8e, 0xae, 0x85, 0x7d +.byte 0x4a, 0xe9, 0xbb, 0x33, 0x4f, 0x0e, 0x52, 0x70, 0x9d, 0x95, 0xe3, 0x7c, 0x6d, 0x96, 0x5b, 0x2d +.byte 0x3d, 0x5f, 0xa1, 0x83, 0x46, 0x5d, 0xb6, 0xe3, 0x25, 0xb8, 0x7c, 0xa7, 0x19, 0x80, 0x1c, 0xea +.byte 0x65, 0x43, 0xdc, 0x91, 0x79, 0x36, 0x2c, 0x74, 0x7c, 0xf2, 0x67, 0x06, 0xc9, 0x89, 0xc9, 0xdb +.byte 0xbf, 0xda, 0x68, 0xbf, 0x23, 0xed, 0xdc, 0x6b, 0xad, 0x28, 0x83, 0x79, 0x2f, 0xec, 0x38, 0xa5 +.byte 0x0d, 0x37, 0x01, 0x67, 0x27, 0x9a, 0xe9, 0x33, 0xd9, 0x33, 0x5f, 0x37, 0xa1, 0xc5, 0xf0, 0xab +.byte 0x3d, 0xfa, 0x78, 0xb0, 0xe7, 0x2c, 0x9f, 0xf6, 0x3e, 0x9f, 0x60, 0xe0, 0xef, 0x48, 0xe9, 0x90 +.byte 0x45, 0x1e, 0x05, 0x51, 0x78, 0x1a, 0x2c, 0x12, 0x2c, 0x5c, 0x28, 0xac, 0x0d, 0xa2, 0x23, 0x9e +.byte 0x34, 0x8f, 0x05, 0xe6, 0xa2, 0x33, 0xce, 0x11, 0x77, 0x13, 0xd4, 0x0e, 0xa4, 0x1e, 0x42, 0x1f +.byte 0x86, 0xcd, 0x70, 0xfe, 0xd9, 0x2e, 0x15, 0x3d, 0x1d, 0xbb, 0xb8, 0xf2, 0x53, 0x57, 0xdb, 0xcc +.byte 0xc6, 0x74, 0x29, 0x9c, 0x18, 0xb3, 0x36, 0x75, 0x38, 0x2e, 0x0f, 0x54, 0xa1, 0xf8, 0x92, 0x1f +.byte 0x89, 0x96, 0x4f, 0xbb, 0xd4, 0xee, 0x9d, 0xe9, 0x3b, 0x36, 0x42, 0xb5, 0x0a, 0x3b, 0x2a, 0xd4 +.byte 0x64, 0x79, 0x36, 0x10, 0xe1, 0xf9, 0x91, 0x03, 0x2b, 0x7b, 0x20, 0x54, 0xcd, 0x0d, 0x19, 0x1a +.byte 0xc8, 0x41, 0x32, 0x34, 0xd1, 0xb0, 0x99, 0xe1, 0x90, 0x1e, 0x01, 0x40, 0x36, 0xb5, 0xb7, 0xfa +.byte 0xa9, 0xe5, 0x77, 0x75, 0xa4, 0x22, 0x81, 0x5d, 0xb0, 0x8b, 0xe4, 0x27, 0x12, 0x0f, 0x54, 0x88 +.byte 0xc6, 0xdb, 0x85, 0x74, 0xe6, 0xb7, 0xc0, 0xd7, 0xa6, 0x29, 0xfa, 0xdb, 0xde, 0xf3, 0x93, 0x97 +.byte 0x27, 0x04, 0x55, 0x2f, 0x0a, 0x6f, 0x37, 0xc5, 0x3d, 0x13, 0xaf, 0x0a, 0x00, 0xa9, 0x2c, 0x8b +.byte 0x1c, 0x81, 0x28, 0xd7, 0xef, 0x86, 0x31, 0xa9, 0xae, 0xf2, 0x6e, 0xb8, 0xca, 0x6a, 0x2c, 0x54 +.byte 0x47, 0xd8, 0x2a, 0x88, 0x2e, 0xaf, 0xc1, 0x07, 0x10, 0x78, 0xac, 0x11, 0xa2, 0x2f, 0x42, 0xf0 +.byte 0x37, 0xc5, 0xf2, 0xb8, 0x56, 0xdd, 0x0e, 0x62, 0x2d, 0xce, 0x2d, 0x56, 0x7e, 0x55, 0xf2, 0xa7 +.byte 0x44, 0xf6, 0x2b, 0x32, 0xf4, 0x23, 0xa8, 0x47, 0xe8, 0xd4, 0x2a, 0x01, 0x78, 0xcf, 0x6a, 0xc3 +.byte 0x37, 0xa8, 0x9e, 0x65, 0xd2, 0x2c, 0xe5, 0xfa, 0xba, 0x33, 0xc1, 0x06, 0x44, 0xf6, 0xe6, 0xcf +.byte 0xa5, 0x0d, 0xa7, 0x66, 0x08, 0x34, 0x8a, 0x2c, 0xf3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00 +.byte 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x1d, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c +.byte 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x47, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc1, 0x44, 0xa1, 0xcf, 0x11, 0x97 +.byte 0x50, 0x9a, 0xde, 0x23, 0x82, 0x35, 0x07, 0xcd, 0xd0, 0xcb, 0x18, 0x9d, 0xd2, 0xf1, 0x7f, 0x77 +.byte 0x35, 0x4f, 0x3b, 0xdd, 0x94, 0x72, 0x52, 0xed, 0xc2, 0x3b, 0xf8, 0xec, 0xfa, 0x7b, 0x6b, 0x58 +.byte 0x20, 0xec, 0x99, 0xae, 0xc9, 0xfc, 0x68, 0xb3, 0x75, 0xb9, 0xdb, 0x09, 0xec, 0xc8, 0x13, 0xf5 +.byte 0x4e, 0xc6, 0x0a, 0x1d, 0x66, 0x30, 0x4c, 0xbb, 0x1f, 0x47, 0x0a, 0x3c, 0x61, 0x10, 0x42, 0x29 +.byte 0x7c, 0xa5, 0x08, 0x0e, 0xe0, 0x22, 0xe9, 0xd3, 0x35, 0x68, 0xce, 0x9b, 0x63, 0x9f, 0x84, 0xb5 +.byte 0x99, 0x4d, 0x58, 0xa0, 0x8e, 0xf5, 0x54, 0xe7, 0x95, 0xc9, 0x50, 0x00, 0x78, 0x00, 0x30, 0x4e +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x18, 0x30 +.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70 +.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x1c, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43 +.byte 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x32, 0x30, 0x76 +.byte 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04 +.byte 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x45, 0x29, 0x35, 0x73, 0xfa, 0xc2, 0xb8, 0x23, 0xce, 0x14 +.byte 0x7d, 0xa8, 0xb1, 0x4d, 0xa0, 0x5b, 0x36, 0xee, 0x2a, 0x2c, 0x53, 0xc3, 0x60, 0x09, 0x35, 0xb2 +.byte 0x24, 0x66, 0x26, 0x69, 0xc0, 0xb3, 0x95, 0xd6, 0x5d, 0x92, 0x40, 0x19, 0x0e, 0xc6, 0xa5, 0x13 +.byte 0x70, 0xf4, 0xef, 0x12, 0x51, 0x28, 0x5d, 0xe7, 0xcc, 0xbd, 0xf9, 0x3c, 0x85, 0xc1, 0xcf, 0x94 +.byte 0x90, 0xc9, 0x2b, 0xce, 0x92, 0x42, 0x58, 0x59, 0x67, 0xfd, 0x94, 0x27, 0x10, 0x64, 0x8c, 0x4f +.byte 0x04, 0xb1, 0x4d, 0x49, 0xe4, 0x7b, 0x4f, 0x9b, 0xf5, 0xe7, 0x08, 0xf8, 0x03, 0x88, 0xf7, 0xa7 +.byte 0xc3, 0x92, 0x4b, 0x19, 0x54, 0x81, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x53, 0x53 +.byte 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd0, 0xa4, 0x09, 0x72, 0x4f +.byte 0x40, 0x88, 0x12, 0x61, 0x3e, 0x35, 0x23, 0x9e, 0xee, 0xf6, 0x74, 0xcf, 0x2f, 0x7b, 0x58, 0x3d +.byte 0xce, 0x3c, 0x0d, 0x10, 0x28, 0x90, 0x2f, 0x97, 0xf7, 0x8c, 0x48, 0xd8, 0xa0, 0xd8, 0x25, 0xb1 +.byte 0x4c, 0xb0, 0x11, 0x4c, 0x17, 0x73, 0x50, 0xd0, 0x22, 0x4a, 0x63, 0xbb, 0x81, 0xd3, 0x29, 0x6e +.byte 0xd5, 0xb5, 0x09, 0x3e, 0x26, 0x18, 0x7f, 0xb2, 0x12, 0x7f, 0x93, 0x98, 0xb7, 0xaf, 0xf0, 0x36 +.byte 0xbf, 0xf2, 0xee, 0x18, 0x9e, 0x9c, 0x3b, 0x52, 0xc5, 0x47, 0x19, 0x5d, 0x74, 0xf3, 0x64, 0x66 +.byte 0xd5, 0x5d, 0xc7, 0x68, 0xb4, 0xbf, 0x1b, 0x1c, 0x06, 0xa3, 0xbc, 0x8f, 0x40, 0x23, 0xb6, 0x1e +.byte 0xc6, 0x84, 0xbd, 0x51, 0xc4, 0x1b, 0x39, 0xc1, 0x95, 0xd2, 0x29, 0xec, 0x4b, 0xae, 0x7b, 0x2d +.byte 0xbf, 0x39, 0xfd, 0xb4, 0x62, 0xde, 0x96, 0x7b, 0x41, 0xc6, 0x9c, 0xa0, 0xe0, 0x06, 0x72, 0xfb +.byte 0xf0, 0x07, 0x97, 0x09, 0x39, 0x81, 0x74, 0xaf, 0xf7, 0x34, 0x59, 0x11, 0x57, 0x0a, 0xc2, 0x5b +.byte 0xc1, 0x24, 0xf4, 0x31, 0x73, 0x30, 0x82, 0xc6, 0x9d, 0xba, 0x02, 0xf7, 0x3e, 0x7c, 0x44, 0x5f +.byte 0x83, 0x0d, 0xf3, 0xf1, 0xdd, 0x20, 0x69, 0x16, 0x09, 0x50, 0xe2, 0xd4, 0x55, 0xb6, 0xe0, 0x80 +.byte 0x72, 0x76, 0x6e, 0x4c, 0x47, 0xb7, 0x75, 0x55, 0x59, 0xb4, 0x53, 0x74, 0xd9, 0x94, 0xc6, 0x41 +.byte 0xad, 0x58, 0x8a, 0x31, 0x66, 0x0f, 0x1e, 0xa2, 0x1b, 0x29, 0x40, 0x4e, 0x2f, 0xdf, 0x7b, 0xe6 +.byte 0x16, 0x2c, 0x2d, 0xfc, 0xbf, 0xec, 0xf3, 0xb4, 0xfa, 0xbe, 0x18, 0xf6, 0x9b, 0x49, 0xd4, 0xee +.byte 0x05, 0x6e, 0xd9, 0x34, 0xf3, 0x9c, 0xf1, 0xec, 0x01, 0x8b, 0xd1, 0x20, 0xc6, 0x0f, 0xa0, 0xb5 +.byte 0xbc, 0x17, 0x4e, 0x48, 0x7b, 0x51, 0xc2, 0xfc, 0xe9, 0x5c, 0x69, 0x37, 0x47, 0x66, 0xb3, 0x68 +.byte 0xf8, 0x15, 0x28, 0xf0, 0xb9, 0xd3, 0xa4, 0x15, 0xcc, 0x5a, 0x4f, 0xba, 0x52, 0x70, 0xa3, 0x12 +.byte 0x45, 0xdd, 0xc6, 0xba, 0x4e, 0xfb, 0xc2, 0xd0, 0xf7, 0xa8, 0x52, 0x27, 0x6d, 0x6e, 0x79, 0xb5 +.byte 0x8c, 0xfc, 0x7b, 0x8c, 0xc1, 0x16, 0x4c, 0xee, 0x80, 0x7f, 0xbe, 0xf0, 0x76, 0xbe, 0x41, 0x53 +.byte 0x12, 0x33, 0xae, 0x5a, 0x38, 0x42, 0xab, 0xd7, 0x0f, 0x3e, 0x41, 0x8d, 0x76, 0x07, 0x32, 0xd5 +.byte 0xab, 0x89, 0xf6, 0x4e, 0x67, 0xd9, 0xb1, 0x42, 0x75, 0x23, 0x6e, 0xf3, 0xcd, 0x42, 0xb2, 0xfc +.byte 0x55, 0xf5, 0x53, 0x87, 0x17, 0x3b, 0xc0, 0x33, 0x58, 0xf1, 0x52, 0xd2, 0xf9, 0x80, 0xa4, 0xf0 +.byte 0xe8, 0xf0, 0x3b, 0x8b, 0x38, 0xcc, 0xa4, 0xc6, 0x90, 0x7f, 0x0f, 0x9c, 0xfd, 0x8b, 0xd1, 0xa3 +.byte 0xcf, 0xda, 0x83, 0xa7, 0x69, 0xc9, 0x50, 0x36, 0xd5, 0x5c, 0x05, 0xd2, 0x0a, 0x41, 0x74, 0xdb +.byte 0x63, 0x11, 0x37, 0xc1, 0xa5, 0xa0, 0x96, 0x4b, 0x1e, 0x8c, 0x16, 0x12, 0x77, 0xae, 0x94, 0x34 +.byte 0x7b, 0x1e, 0x7f, 0xc2, 0x66, 0x00, 0xe4, 0xaa, 0x83, 0xea, 0x8a, 0x90, 0xad, 0xce, 0x36, 0x44 +.byte 0x4d, 0xd1, 0x51, 0xe9, 0xbc, 0x1f, 0xf3, 0x6a, 0x05, 0xfd, 0xc0, 0x74, 0x1f, 0x25, 0x19, 0x40 +.byte 0x51, 0x6e, 0xea, 0x82, 0x51, 0x40, 0xdf, 0x9b, 0xb9, 0x08, 0x2a, 0x06, 0x02, 0xd5, 0x23, 0x1c +.byte 0x13, 0xd6, 0xe9, 0xdb, 0xdb, 0xc6, 0xb0, 0x7a, 0xcb, 0x7b, 0x27, 0x9b, 0xfb, 0xe0, 0xd5, 0x46 +.byte 0x24, 0xed, 0x10, 0x4b, 0x63, 0x4b, 0xa5, 0x05, 0x8f, 0xba, 0xb8, 0x1d, 0x2b, 0xa6, 0xfa, 0x91 +.byte 0xe2, 0x92, 0x52, 0xbd, 0xec, 0xeb, 0x67, 0x97, 0x6d, 0x9a, 0x2d, 0x9f, 0x81, 0x32, 0x05, 0x67 +.byte 0x32, 0xfb, 0x48, 0x08, 0x3f, 0xd9, 0x25, 0xb8, 0x04, 0x25, 0x2f, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x51, 0x00, 0x26, 0x02, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68 +.byte 0x75, 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43 +.byte 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x12, 0x48, 0x69, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xf4, 0x1e, 0x7f, 0x52, 0x73, 0x32, 0x0c, 0x73, 0xe4, 0xbd +.byte 0x13, 0x74, 0xa3, 0xd4, 0x30, 0xa8, 0xd0, 0xae, 0x4b, 0xd8, 0xb6, 0xdf, 0x75, 0x47, 0x66, 0xf4 +.byte 0x7c, 0xe7, 0x39, 0x04, 0x1e, 0x6a, 0x70, 0x20, 0xd2, 0x5a, 0x47, 0x72, 0x67, 0x55, 0xf4, 0xa5 +.byte 0xe8, 0x9d, 0xd5, 0x1e, 0x21, 0xa1, 0xf0, 0x67, 0xba, 0xcc, 0x21, 0x68, 0xbe, 0x44, 0x53, 0xbf +.byte 0x8d, 0xf9, 0xe2, 0xdc, 0x2f, 0x55, 0xc8, 0x37, 0x3f, 0x1f, 0xa4, 0xc0, 0x9c, 0xb3, 0xe4, 0x77 +.byte 0x5c, 0xa0, 0x46, 0xfe, 0x77, 0xfa, 0x1a, 0xa0, 0x38, 0xea, 0xed, 0x9a, 0x72, 0xde, 0x2b, 0xbd +.byte 0x94, 0x57, 0x3a, 0xba, 0xec, 0x79, 0xe7, 0x5f, 0x7d, 0x42, 0x64, 0x39, 0x7a, 0x26, 0x36, 0xf7 +.byte 0x24, 0xf0, 0xd5, 0x2f, 0xba, 0x95, 0x98, 0x11, 0x66, 0xad, 0x97, 0x35, 0xd6, 0x75, 0x01, 0x80 +.byte 0xe0, 0xaf, 0xf4, 0x84, 0x61, 0x8c, 0x0d, 0x1e, 0x5f, 0x7c, 0x87, 0x96, 0x5e, 0x41, 0xaf, 0xeb +.byte 0x87, 0xea, 0xf8, 0x5d, 0xf1, 0x2e, 0x88, 0x05, 0x3e, 0x4c, 0x22, 0xbb, 0xda, 0x1f, 0x2a, 0xdd +.byte 0x52, 0x46, 0x64, 0x39, 0xf3, 0x42, 0xce, 0xd9, 0x9e, 0x0c, 0xb3, 0xb0, 0x77, 0x97, 0x64, 0x9c +.byte 0xc0, 0xf4, 0xa3, 0x2e, 0x1f, 0x95, 0x07, 0xb0, 0x17, 0xdf, 0x30, 0xdb, 0x00, 0x18, 0x96, 0x4c +.byte 0xa1, 0x81, 0x4b, 0xdd, 0x04, 0x6d, 0x53, 0xa3, 0x3d, 0xfc, 0x07, 0xac, 0xd4, 0xc5, 0x37, 0x82 +.byte 0xeb, 0xe4, 0x95, 0x08, 0x19, 0x28, 0x82, 0xd2, 0x42, 0x3a, 0xa3, 0xd8, 0x53, 0xec, 0x79, 0x89 +.byte 0x60, 0x48, 0x60, 0xc8, 0x72, 0x92, 0x50, 0xdc, 0x03, 0x8f, 0x83, 0x3f, 0xb2, 0x42, 0x57, 0x5a +.byte 0xdb, 0x6a, 0xe9, 0x11, 0x97, 0xdd, 0x85, 0x28, 0xbc, 0x30, 0x4c, 0xab, 0xe3, 0xc2, 0xb1, 0x45 +.byte 0x44, 0x47, 0x1f, 0xe0, 0x8a, 0x16, 0x07, 0x96, 0xd2, 0x21, 0x0f, 0x53, 0xc0, 0xed, 0xa9, 0x7e +.byte 0xd4, 0x4e, 0xec, 0x9b, 0x09, 0xec, 0xaf, 0x42, 0xac, 0x30, 0xd6, 0xbf, 0xd1, 0x10, 0x45, 0xe0 +.byte 0xa6, 0x16, 0xb2, 0xa5, 0xc5, 0xd3, 0x4f, 0x73, 0x94, 0x33, 0x71, 0x02, 0xa1, 0x6a, 0xa3, 0xd6 +.byte 0x33, 0x97, 0x4f, 0x21, 0x63, 0x1e, 0x5b, 0x8f, 0xd9, 0xc1, 0x5e, 0x45, 0x71, 0x77, 0x0f, 0x81 +.byte 0x5d, 0x5f, 0x21, 0x9a, 0xad, 0x83, 0xcc, 0xfa, 0x5e, 0xd6, 0x8d, 0x23, 0x5f, 0x1b, 0x3d, 0x41 +.byte 0xaf, 0x20, 0x75, 0x66, 0x5a, 0x4a, 0xf6, 0x9f, 0xfb, 0xab, 0x18, 0xf7, 0x71, 0xc0, 0xb6, 0x1d +.byte 0x31, 0xec, 0x3b, 0x20, 0xeb, 0xcb, 0xe2, 0xb8, 0xf5, 0xae, 0x92, 0xb2, 0xf7, 0xe1, 0x84, 0x4b +.byte 0xf2, 0xa2, 0xf2, 0x93, 0x9a, 0x22, 0x9e, 0xd3, 0x14, 0x6f, 0x36, 0x54, 0xbd, 0x1f, 0x5e, 0x59 +.byte 0x15, 0xb9, 0x73, 0xa8, 0xc1, 0x7c, 0x6f, 0x7b, 0x62, 0xe9, 0x16, 0x6c, 0x47, 0x5a, 0x65, 0xf3 +.byte 0x0e, 0x11, 0x9b, 0x46, 0xd9, 0xfd, 0x6d, 0xdc, 0xd6, 0x9c, 0xc0, 0xb4, 0x7d, 0xa5, 0xb0, 0xdd +.byte 0x3f, 0x56, 0x6f, 0xa1, 0xf9, 0xf6, 0xe4, 0x12, 0x48, 0xfd, 0x06, 0x7f, 0x12, 0x57, 0xb6, 0xa9 +.byte 0x23, 0x4f, 0x5b, 0x03, 0xc3, 0xe0, 0x71, 0x2a, 0x23, 0xb7, 0xf7, 0xb0, 0xb1, 0x3b, 0xbc, 0x98 +.byte 0xbd, 0xd6, 0x98, 0xa8, 0x0c, 0x6b, 0xf6, 0x8e, 0x12, 0x67, 0xa6, 0xf2, 0xb2, 0x58, 0xe4, 0x02 +.byte 0x09, 0x13, 0x3c, 0xa9, 0xbb, 0x10, 0xb4, 0xd2, 0x30, 0x45, 0xf1, 0xec, 0xf7, 0x00, 0x11, 0xdf +.byte 0x65, 0xf8, 0xdc, 0x2b, 0x43, 0x55, 0xbf, 0x16, 0x97, 0xc4, 0x0f, 0xd5, 0x2c, 0x61, 0x84, 0xaa +.byte 0x72, 0x86, 0xfe, 0xe6, 0x3a, 0x7e, 0xc2, 0x3f, 0x7d, 0xee, 0xfc, 0x2f, 0x14, 0x3e, 0xe6, 0x85 +.byte 0xdd, 0x50, 0x6f, 0xb7, 0x49, 0xed, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x26, 0x02, 0x30 +.byte 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29 +.byte 0x30, 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65 +.byte 0x74, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61 +.byte 0x72, 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x31 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xad, 0xe8, 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b, 0x57, 0x28, 0x1c, 0x87 +.byte 0xbe, 0xdc, 0xb7, 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0, 0x78, 0xf7, 0x75, 0xc2 +.byte 0xa2, 0xfe, 0xf5, 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68, 0x86, 0x6c, 0x44, 0x93 +.byte 0xb6, 0xb1, 0x63, 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31, 0x9b, 0x21, 0x7e, 0xd1 +.byte 0x33, 0x3c, 0xba, 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12, 0xf1, 0x21, 0x9a, 0x4b +.byte 0xc1, 0x8a, 0x86, 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c, 0x70, 0xbf, 0xad, 0x29 +.byte 0x22, 0x06, 0xf3, 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7, 0x99, 0x7e, 0x94, 0x03 +.byte 0x9f, 0xd3, 0x47, 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae, 0x4f, 0x0a, 0x6f, 0x83 +.byte 0x2e, 0xd1, 0x49, 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38, 0x8d, 0x7b, 0x03, 0x70 +.byte 0x21, 0x1b, 0x75, 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63, 0xab, 0xeb, 0x16, 0x4f +.byte 0xc2, 0x8e, 0x11, 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e, 0xf4, 0xb2, 0x7b, 0x4a +.byte 0xe0, 0x4c, 0x12, 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53, 0x24, 0xec, 0x13, 0xd9 +.byte 0xee, 0x19, 0xbf, 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51, 0xde, 0xac, 0x87, 0x07 +.byte 0x94, 0xf4, 0x63, 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1, 0x89, 0x5c, 0x34, 0x79 +.byte 0x6c, 0x76, 0xef, 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f, 0x26, 0xc5, 0xd0, 0x10 +.byte 0xe1, 0x0e, 0xde, 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7, 0xc7, 0xe5, 0x02, 0x07 +.byte 0x98, 0x8f, 0x36, 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75, 0x9e, 0xfb, 0x0e, 0x72 +.byte 0xb1, 0x1d, 0x9b, 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05, 0xb4, 0x2a, 0xd6, 0x41 +.byte 0xe9, 0xac, 0x01, 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12, 0x1f, 0x35, 0x2f, 0x28 +.byte 0x17, 0x6c, 0xd2, 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37, 0xba, 0xce, 0xac, 0x59 +.byte 0x5e, 0x68, 0x9d, 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e, 0x59, 0x3e, 0xdd, 0x26 +.byte 0xf5, 0x24, 0xc9, 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1, 0x99, 0xb5, 0xa7, 0x3a +.byte 0x51, 0x6e, 0x86, 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59, 0xed, 0x3e, 0x51, 0x78 +.byte 0x15, 0x0b, 0x03, 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a, 0x1c, 0x4b, 0x73, 0x05 +.byte 0x12, 0xfc, 0xc6, 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3, 0xca, 0x74, 0xe7, 0x8e +.byte 0x1f, 0x01, 0x08, 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba, 0xc1, 0x30, 0x30, 0x5c +.byte 0x48, 0xb7, 0x82, 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29, 0x82, 0xcc, 0xba, 0xbd +.byte 0x83, 0x04, 0x1b, 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b, 0xc2, 0xb6, 0xf0, 0xa8 +.byte 0x7c, 0x86, 0x3b, 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76, 0xbf, 0x1f, 0x6a, 0xa5 +.byte 0x3d, 0x19, 0x8f, 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a, 0x28, 0xff, 0xf7, 0xdb +.byte 0xe2, 0x15, 0x42, 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18, 0xe7, 0x70, 0x88, 0xad +.byte 0x4e, 0xe6, 0xd9, 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc, 0x64, 0xf5, 0x33, 0x43 +.byte 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x78, 0x00, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63 +.byte 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47 +.byte 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49 +.byte 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06 +.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 +.byte 0x62, 0x00, 0x04, 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec, 0x09, 0x4a, 0xf3, 0x16, 0x4a +.byte 0x3e, 0x5c, 0xcf, 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07, 0xb6, 0xdc, 0x16, 0xfb, 0x5a +.byte 0x8b, 0x14, 0xdb, 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11, 0x89, 0x8e, 0xea, 0x06, 0xdf +.byte 0xf7, 0x2a, 0x16, 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03, 0xe0, 0x1e, 0x82, 0x18, 0x38 +.byte 0x8b, 0xd7, 0x45, 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb, 0x02, 0x51, 0x7d, 0x22, 0xd8 +.byte 0x0a, 0x6e, 0x9a, 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39, 0xdc, 0x75, 0xca, 0x68, 0x07 +.byte 0x0c, 0x1f, 0xea, 0x52, 0x00, 0x26, 0x01, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2a, 0x30 +.byte 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20 +.byte 0x32, 0x20, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x99, 0xf1, 0x84, 0x34, 0x70, 0xba +.byte 0x2f, 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62, 0xbc, 0x99, 0xfd, 0x82, 0x97 +.byte 0xd2, 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95, 0x22, 0x73, 0x99, 0x8d, 0xda +.byte 0x15, 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98, 0x00, 0xbc, 0x3c, 0x3d, 0xac +.byte 0xa1, 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64, 0xda, 0x88, 0x3e, 0x29, 0xb8 +.byte 0x0f, 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd, 0x19, 0xe9, 0xee, 0x18, 0x4f +.byte 0x4c, 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8, 0x3a, 0xb8, 0xc4, 0x18, 0x64 +.byte 0x1e, 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9, 0x94, 0x6b, 0x13, 0x97, 0x6f +.byte 0x12, 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68, 0x36, 0xed, 0x08, 0x7b, 0xb7 +.byte 0xf5, 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34, 0x87, 0x4e, 0x17, 0xea, 0xaf +.byte 0x8b, 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37, 0xf2, 0x1d, 0xd9, 0xd1, 0x2d +.byte 0x0d, 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a, 0xbd, 0xc7, 0x1a, 0xb1, 0xe1 +.byte 0x14, 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe, 0xb4, 0xb1, 0x46, 0x20, 0xa2 +.byte 0xfb, 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96, 0xf2, 0xc5, 0xef, 0x85, 0x70 +.byte 0xad, 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f, 0xcb, 0x52, 0x83, 0x62, 0x7c +.byte 0xee, 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05, 0xd8, 0xf9, 0x4d, 0xc4, 0x27 +.byte 0xfa, 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x52 +.byte 0x00, 0x26, 0x02, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41, 0x49 +.byte 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x12, 0x54, 0x57, 0x43, 0x41, 0x20, 0x43, 0x59, 0x42, 0x45, 0x52, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc6, 0xf8, 0xca, 0x1e, 0xd9, 0x09, 0x20, 0x7e, 0x1d, 0x6c +.byte 0x4e, 0xce, 0x8f, 0xe3, 0x47, 0x33, 0x44, 0x9c, 0xc7, 0xc9, 0x69, 0xaa, 0x3a, 0x5b, 0x78, 0xee +.byte 0x70, 0xd2, 0x92, 0xf8, 0x04, 0xb3, 0x52, 0x52, 0x1d, 0x67, 0x72, 0x28, 0xa1, 0xdf, 0x8b, 0x5d +.byte 0x95, 0x0a, 0xfe, 0xea, 0xcd, 0xed, 0xf7, 0x29, 0xce, 0xf0, 0x6f, 0x7f, 0xac, 0xcd, 0x3d, 0xef +.byte 0xb3, 0x1c, 0x45, 0x6a, 0xf7, 0x28, 0x90, 0xf1, 0x61, 0x57, 0xc5, 0x0c, 0xc4, 0xa3, 0x50, 0x5d +.byte 0xde, 0xd4, 0xb5, 0xcb, 0x19, 0xca, 0x80, 0xb9, 0x75, 0xce, 0x29, 0xce, 0xd2, 0x85, 0x22, 0xec +.byte 0x02, 0x63, 0xcc, 0x44, 0x30, 0x20, 0xda, 0xea, 0x91, 0x5b, 0x56, 0xe6, 0x1d, 0x1c, 0xd5, 0x9d +.byte 0x66, 0xc7, 0x3f, 0xdf, 0x86, 0xca, 0x4b, 0x53, 0xc4, 0xd9, 0x8d, 0xb2, 0x1d, 0xea, 0xf8, 0xdc +.byte 0x27, 0x53, 0xa3, 0x47, 0xe1, 0x61, 0xcc, 0x7d, 0xb5, 0xb0, 0xf8, 0xee, 0x73, 0x91, 0xc5, 0xce +.byte 0x73, 0x6f, 0xce, 0xee, 0x10, 0x1f, 0x1a, 0x06, 0xcf, 0xe9, 0x27, 0x60, 0xc5, 0x4f, 0x19, 0xe4 +.byte 0xeb, 0xce, 0x22, 0x26, 0x45, 0xd7, 0x60, 0x99, 0xdd, 0xce, 0x4f, 0x37, 0xe0, 0x7f, 0xe7, 0x63 +.byte 0xad, 0xb0, 0xb8, 0x59, 0xb8, 0xd0, 0x06, 0x68, 0x35, 0x60, 0xd3, 0x36, 0xae, 0x71, 0x43, 0x04 +.byte 0xf1, 0x69, 0x65, 0x78, 0x7c, 0xf3, 0x1f, 0xf3, 0xca, 0x28, 0x9f, 0x5a, 0x20, 0x95, 0x66, 0xb4 +.byte 0xcd, 0xb7, 0xee, 0x8f, 0x78, 0xa4, 0x45, 0x18, 0xe9, 0x26, 0x2f, 0x8d, 0x9b, 0x29, 0x28, 0xb1 +.byte 0xa4, 0xb7, 0x3a, 0x6d, 0xb9, 0xd4, 0x1c, 0x38, 0x72, 0x45, 0x58, 0xb1, 0x5e, 0xeb, 0xf0, 0x28 +.byte 0x9b, 0xb7, 0x82, 0xca, 0xfd, 0xcf, 0xd6, 0x33, 0x0f, 0x9f, 0xfb, 0x97, 0x9e, 0xb1, 0x1c, 0x9c +.byte 0x9e, 0xea, 0x5f, 0x5e, 0xdb, 0xaa, 0xdd, 0x54, 0xe9, 0x30, 0x21, 0x28, 0x6d, 0x8e, 0x79, 0xf3 +.byte 0x75, 0x92, 0x8c, 0x26, 0xfe, 0xdc, 0xc5, 0xf6, 0xc3, 0xb0, 0xdf, 0x44, 0x59, 0x43, 0xa3, 0xb6 +.byte 0x03, 0x28, 0xf6, 0x08, 0x30, 0xaa, 0x0d, 0x33, 0xe1, 0xef, 0x9c, 0xa9, 0x07, 0x22, 0xe3, 0x59 +.byte 0x5b, 0x40, 0x8f, 0xda, 0x88, 0xb7, 0x69, 0x08, 0xa8, 0xb7, 0x23, 0x2e, 0x44, 0x09, 0x59, 0x37 +.byte 0x5b, 0xc7, 0xe3, 0x17, 0xf2, 0x22, 0xeb, 0x6e, 0x39, 0x52, 0xc5, 0xde, 0x54, 0xa7, 0x98, 0xc9 +.byte 0x4b, 0x20, 0x95, 0xdc, 0x46, 0x89, 0x5f, 0xb4, 0x12, 0xf9, 0x85, 0x29, 0x8e, 0xeb, 0xc8, 0x27 +.byte 0x15, 0x20, 0xc0, 0x4b, 0xd4, 0xcc, 0x7c, 0x0c, 0x6c, 0x34, 0x0c, 0x26, 0x9b, 0x26, 0x31, 0xa6 +.byte 0x3c, 0xa7, 0xf6, 0xd9, 0xd0, 0x4b, 0xa2, 0x64, 0xff, 0x3b, 0x99, 0x41, 0x72, 0xc1, 0xe0, 0x70 +.byte 0x97, 0xf1, 0x24, 0xbb, 0x2b, 0xc4, 0x74, 0x22, 0xb1, 0xac, 0x6b, 0x22, 0x32, 0x24, 0xd3, 0x78 +.byte 0x2a, 0xc0, 0xc0, 0xa1, 0x2f, 0xf1, 0x52, 0x05, 0xc9, 0x3f, 0xef, 0x76, 0x66, 0xe2, 0x45, 0xd8 +.byte 0x0d, 0x3d, 0xad, 0x95, 0xc8, 0xc7, 0x89, 0x26, 0xc8, 0x0f, 0xae, 0xa7, 0x03, 0x2e, 0xfb, 0xc1 +.byte 0x5f, 0xfa, 0x20, 0xe1, 0x70, 0xad, 0xb0, 0x65, 0x20, 0x37, 0x33, 0x60, 0xb0, 0xd5, 0xaf, 0xd7 +.byte 0x0c, 0x1c, 0xc2, 0x90, 0x70, 0xd7, 0x4a, 0x18, 0xbc, 0x7e, 0x01, 0xb0, 0xb0, 0xeb, 0x15, 0x1e +.byte 0x44, 0x06, 0xcd, 0xa4, 0x4f, 0xe8, 0x0c, 0xd1, 0xc3, 0x20, 0x10, 0xe1, 0x54, 0x65, 0x9e, 0xb6 +.byte 0x51, 0xd0, 0x1a, 0x76, 0x6b, 0x42, 0x5a, 0x58, 0x76, 0x34, 0xea, 0xb7, 0x37, 0x19, 0xae, 0x2e +.byte 0x75, 0xf9, 0x96, 0xe5, 0xc1, 0x59, 0xf7, 0x94, 0x57, 0x29, 0x25, 0x8d, 0x3a, 0x4c, 0xab, 0x4d +.byte 0x9a, 0x41, 0xd0, 0x5f, 0x26, 0x03, 0x02, 0x03, 0x01, 0x00, 0x01, 0x52, 0x00, 0x5b, 0x00, 0x30 +.byte 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 +.byte 0x6e, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08 +.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0xb8, 0xc6, 0x79, 0xd3 +.byte 0x8f, 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4, 0xae, 0x9a, 0xe5, 0x39, 0x07 +.byte 0x09, 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1, 0x57, 0xce, 0x42, 0xfa, 0x73 +.byte 0xa1, 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73, 0x0e, 0xff, 0xc7, 0x21, 0xe5 +.byte 0x18, 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c, 0x1d, 0x52, 0x00, 0x78, 0x00 +.byte 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x35, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 +.byte 0x67, 0x6e, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x45, 0x0e, 0x96, 0xfb, 0x7d +.byte 0x5d, 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5, 0x7b, 0x1e, 0x92, 0x3a, 0x48 +.byte 0x59, 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a, 0xa7, 0x5c, 0xb3, 0xb6, 0xcc +.byte 0x97, 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2, 0xc0, 0x87, 0x65, 0x34, 0x0a +.byte 0x1f, 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4, 0x6f, 0x41, 0x95, 0x38, 0x7f +.byte 0xc9, 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87, 0x0c, 0x3a, 0x85, 0x4a, 0x66 +.byte 0x9f, 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30 +.byte 0x40, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61 +.byte 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f +.byte 0x6e, 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36 +.byte 0x38, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda +.byte 0xe0, 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a +.byte 0xb2, 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42 +.byte 0xe4, 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32 +.byte 0x71, 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c +.byte 0xe9, 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad +.byte 0x37, 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8 +.byte 0x50, 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52 +.byte 0x02, 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f +.byte 0xd7, 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3 +.byte 0xf4, 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72 +.byte 0x1b, 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59 +.byte 0x5f, 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2 +.byte 0x92, 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a +.byte 0x86, 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9 +.byte 0x87, 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b +.byte 0x19, 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e +.byte 0x38, 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c +.byte 0xaf, 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31 +.byte 0xb4, 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78 +.byte 0x96, 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76 +.byte 0xd8, 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29 +.byte 0xa3, 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5 +.byte 0xe2, 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee +.byte 0x24, 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb +.byte 0x01, 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52 +.byte 0xca, 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa +.byte 0x0d, 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94 +.byte 0x64, 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5 +.byte 0x3b, 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41 +.byte 0xb6, 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06 +.byte 0x3b, 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92 +.byte 0x30, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31 +.byte 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65 +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x32, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xba +.byte 0x39, 0xc1, 0x37, 0x7a, 0x68, 0x45, 0x2b, 0x14, 0xb4, 0xeb, 0xe4, 0x13, 0xeb, 0x57, 0x75, 0x23 +.byte 0x4d, 0x8f, 0x24, 0x2d, 0x16, 0xe8, 0xae, 0x8e, 0xc9, 0x7d, 0xa4, 0x57, 0x3b, 0x2a, 0x76, 0x25 +.byte 0x33, 0x83, 0x6c, 0xea, 0x32, 0x8a, 0x94, 0x9b, 0x4e, 0x3c, 0x96, 0xe4, 0xfd, 0x51, 0xbf, 0x99 +.byte 0xc9, 0x93, 0x7e, 0xbf, 0xf9, 0xad, 0xa7, 0xb2, 0x48, 0x2b, 0x07, 0x1c, 0x27, 0xf5, 0x4c, 0xbc +.byte 0x70, 0x12, 0x77, 0xa4, 0x85, 0x54, 0xb5, 0xfd, 0x90, 0x7a, 0xe4, 0xa3, 0xe4, 0x51, 0x58, 0x03 +.byte 0xcd, 0x10, 0x79, 0x79, 0xee, 0x6b, 0x93, 0x1f, 0x64, 0x8e, 0x6b, 0x64, 0xab, 0xa3, 0x13, 0xe3 +.byte 0x71, 0xfe, 0x7d, 0xab, 0x9c, 0xdd, 0x27, 0x53, 0x37, 0xb3, 0xaa, 0x18, 0xc2, 0x59, 0x26, 0xec +.byte 0x5b, 0x1f, 0xd2, 0xe6, 0x65, 0x7c, 0xef, 0x93, 0xbd, 0xd8, 0x58, 0x5c, 0x0b, 0xc0, 0xe3, 0x65 +.byte 0x6f, 0x3c, 0xc7, 0xca, 0x59, 0xe3, 0xfe, 0x6e, 0x5f, 0xac, 0x83, 0xbe, 0xfd, 0x5d, 0x25, 0x4e +.byte 0x2a, 0x29, 0x3b, 0xd6, 0x0b, 0xab, 0x17, 0x32, 0x78, 0xa4, 0xe1, 0x3e, 0x94, 0x46, 0xbe, 0x62 +.byte 0x6e, 0x9b, 0xde, 0x46, 0xa8, 0xb1, 0x16, 0xe7, 0x85, 0x6e, 0xf4, 0x08, 0x40, 0x45, 0x11, 0xa0 +.byte 0x9e, 0x54, 0x44, 0x84, 0xf7, 0xd8, 0x36, 0xce, 0xf5, 0x50, 0x47, 0xdc, 0x2c, 0x30, 0x9b, 0xee +.byte 0xc0, 0xf5, 0x96, 0xd2, 0xfe, 0x09, 0x86, 0xc7, 0x06, 0x59, 0xae, 0x4f, 0xae, 0x8e, 0x11, 0x98 +.byte 0x7b, 0xf3, 0x0b, 0x52, 0xaa, 0x62, 0x26, 0xaa, 0x21, 0xdf, 0x8e, 0x25, 0x33, 0x79, 0x97, 0x16 +.byte 0x49, 0x8d, 0xf5, 0x3e, 0xd5, 0x47, 0x9f, 0x37, 0x31, 0x49, 0x33, 0x72, 0x05, 0x4d, 0x0c, 0xb6 +.byte 0x55, 0x8c, 0xf1, 0x57, 0x8f, 0x8a, 0x87, 0xd1, 0xad, 0xc5, 0x11, 0x12, 0x39, 0xa0, 0xad, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61, 0x70 +.byte 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30, 0x1b +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x34, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc5, 0xd2, 0x7a, 0xa1 +.byte 0xd6, 0x8a, 0xbf, 0x16, 0x31, 0xd0, 0x98, 0xd1, 0x3a, 0x94, 0xfc, 0x5a, 0xb8, 0x6e, 0x22, 0xc1 +.byte 0x62, 0xf7, 0xa7, 0x0a, 0x27, 0xef, 0x50, 0xf6, 0x2e, 0xb1, 0x9e, 0x68, 0x12, 0xf0, 0x6c, 0x24 +.byte 0x63, 0x39, 0xf1, 0xf0, 0xdf, 0x10, 0xc6, 0xde, 0xb7, 0x52, 0x20, 0xd5, 0x52, 0x5b, 0x42, 0x99 +.byte 0x9e, 0xf3, 0xa0, 0xbe, 0x52, 0x1f, 0x5f, 0xcc, 0x67, 0x6d, 0xa7, 0x2e, 0x50, 0xa2, 0xc1, 0x97 +.byte 0x8d, 0xb6, 0xf8, 0x95, 0xf5, 0xb0, 0xba, 0xdc, 0x9d, 0xe0, 0xbe, 0xcb, 0xdf, 0xf7, 0x38, 0xf2 +.byte 0x47, 0xf5, 0xa6, 0x9a, 0x92, 0x95, 0x2a, 0x62, 0x59, 0x50, 0x0b, 0xa2, 0xb1, 0x35, 0xe7, 0x65 +.byte 0xb2, 0x61, 0xb2, 0xea, 0x92, 0x71, 0x69, 0xe4, 0x29, 0xf0, 0x4f, 0x81, 0x81, 0x04, 0x3c, 0xb2 +.byte 0xa5, 0x5b, 0xd4, 0xc5, 0xa8, 0x59, 0x67, 0x7b, 0x55, 0x1c, 0x49, 0xab, 0x7a, 0x9d, 0xc2, 0xe7 +.byte 0x73, 0x4d, 0xef, 0xcd, 0x09, 0xc2, 0xc4, 0x57, 0x12, 0xdb, 0x01, 0x0e, 0x23, 0x79, 0x09, 0x07 +.byte 0x3b, 0xa2, 0xe8, 0xfc, 0x8a, 0xcf, 0x8f, 0xc0, 0x46, 0x24, 0x9c, 0x38, 0x27, 0xe0, 0x83, 0x9d +.byte 0x1b, 0xa0, 0xbf, 0x78, 0x15, 0x10, 0xeb, 0x86, 0x4e, 0x0a, 0x5a, 0xfd, 0xdf, 0xda, 0x2c, 0x82 +.byte 0x7e, 0xee, 0xca, 0xf6, 0x29, 0xe1, 0xfa, 0x71, 0xa1, 0xf7, 0x88, 0x68, 0x9c, 0x9c, 0xf0, 0x8d +.byte 0xbe, 0x0f, 0x49, 0x91, 0xd8, 0xea, 0x3a, 0xf9, 0xfd, 0xd0, 0x68, 0x71, 0xdb, 0xe9, 0xb5, 0x2b +.byte 0x4e, 0x82, 0x92, 0x6f, 0x66, 0x1f, 0xe0, 0xf0, 0xdc, 0x4c, 0xec, 0xca, 0xd1, 0xea, 0xba, 0x74 +.byte 0x06, 0xf9, 0xb3, 0x84, 0x90, 0x94, 0xd1, 0x5f, 0x8e, 0x73, 0x19, 0x10, 0x5d, 0x02, 0xe5, 0x70 +.byte 0xa5, 0xc0, 0x10, 0xd0, 0x10, 0x7c, 0x6f, 0xc5, 0x58, 0x49, 0xb4, 0xb0, 0x6e, 0x9a, 0xda, 0x7d +.byte 0x95, 0xf5, 0xcc, 0xda, 0x02, 0xaf, 0xb8, 0x2c, 0x7d, 0x79, 0x8f, 0xbe, 0x43, 0xf1, 0xf9, 0x28 +.byte 0x28, 0x8d, 0x09, 0x43, 0xf8, 0x08, 0xdd, 0x6b, 0xc8, 0x8b, 0x2c, 0x24, 0xb1, 0x8d, 0x52, 0x07 +.byte 0xbd, 0x78, 0x9b, 0xcb, 0xca, 0x68, 0xb2, 0xa4, 0xdd, 0x0c, 0x4c, 0x79, 0x60, 0xc6, 0x99, 0xd1 +.byte 0x93, 0xf1, 0x30, 0x1a, 0x07, 0xd3, 0xae, 0x22, 0xc2, 0xea, 0xce, 0xf1, 0x84, 0x09, 0xcc, 0xe0 +.byte 0x14, 0x6e, 0x7f, 0x3f, 0x7e, 0xd2, 0x82, 0x85, 0xac, 0xdc, 0xa9, 0x16, 0x4e, 0x85, 0xa0, 0x60 +.byte 0xcb, 0xf6, 0x9c, 0xd7, 0xc8, 0xb3, 0x8e, 0xed, 0xc6, 0x9b, 0x98, 0x75, 0x0d, 0x55, 0xe8, 0x5f +.byte 0xe5, 0x95, 0x8b, 0x02, 0xa4, 0xae, 0x43, 0x29, 0x28, 0x11, 0xa4, 0xe6, 0x12, 0x30, 0x01, 0x4b +.byte 0x75, 0x6b, 0x1e, 0x66, 0x9d, 0x79, 0x2f, 0xa5, 0x76, 0x2f, 0x1d, 0x40, 0xb4, 0x6d, 0xc9, 0x7d +.byte 0x79, 0x08, 0xec, 0xd1, 0x6a, 0xb6, 0x5d, 0x2a, 0xb2, 0xa5, 0x66, 0xbd, 0x6b, 0x85, 0xf4, 0x74 +.byte 0x56, 0xc3, 0xf5, 0xe7, 0x75, 0x52, 0x28, 0x2c, 0xa5, 0xff, 0x66, 0x47, 0xa5, 0xd4, 0xfe, 0xfe +.byte 0x9e, 0x54, 0xbf, 0x65, 0x7e, 0x01, 0xd6, 0x30, 0x8f, 0xa5, 0x36, 0x9c, 0xa2, 0x50, 0x1c, 0xee +.byte 0x38, 0x80, 0x01, 0x48, 0xc6, 0xc7, 0x74, 0xf4, 0xc6, 0xac, 0xc3, 0x40, 0x49, 0x16, 0x61, 0x74 +.byte 0x2c, 0xaf, 0x8c, 0x6f, 0x35, 0xed, 0x7b, 0x18, 0x00, 0x5b, 0x36, 0x3c, 0x9c, 0x50, 0x0d, 0xca +.byte 0x92, 0x33, 0x10, 0xf1, 0x26, 0x49, 0x6d, 0xdf, 0x75, 0x24, 0x37, 0x82, 0x22, 0xd7, 0xe8, 0x96 +.byte 0xfd, 0x15, 0x4b, 0x02, 0x96, 0x3e, 0x07, 0x72, 0x95, 0x7e, 0xab, 0x3d, 0x4c, 0x2e, 0xd7, 0xca +.byte 0xf0, 0xdf, 0xe0, 0x58, 0x3f, 0x2d, 0x2f, 0x04, 0x9a, 0x38, 0xa3, 0x01, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x53, 0x00, 0x78, 0x00, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43 +.byte 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20 +.byte 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86 +.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04 +.byte 0x0b, 0x50, 0x74, 0x8d, 0x64, 0x32, 0x99, 0x99, 0xb3, 0xd2, 0x60, 0x08, 0xb8, 0x22, 0x8e, 0x46 +.byte 0x74, 0x2c, 0x78, 0xc0, 0x2b, 0x44, 0x2d, 0x6d, 0x5f, 0x1d, 0xc9, 0xae, 0x4b, 0x52, 0x20, 0x83 +.byte 0x3d, 0xb8, 0x14, 0x6d, 0x53, 0x87, 0x60, 0x9e, 0x5f, 0x6c, 0x85, 0xdb, 0x06, 0x14, 0x95, 0xe0 +.byte 0xc7, 0x28, 0xff, 0x9d, 0x5f, 0xe4, 0xaa, 0xf1, 0xb3, 0x8b, 0x6d, 0xed, 0x4f, 0x2f, 0x4b, 0xc9 +.byte 0x4a, 0x94, 0x91, 0x64, 0x75, 0xfe, 0x01, 0xec, 0xc1, 0xd8, 0xeb, 0x7a, 0x94, 0x78, 0x56, 0x18 +.byte 0x43, 0x5f, 0x6b, 0x81, 0xcb, 0xf6, 0xbc, 0xda, 0xb4, 0x0c, 0xb6, 0x29, 0x93, 0x08, 0x69, 0x8f +.byte 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1f, 0x4b, 0x72 +.byte 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61, 0x20, 0x52, 0x6f, 0x7a, 0x6c, 0x69 +.byte 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x18, 0x30 +.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a, 0x41, 0x46, 0x49, 0x52, 0x20, 0x52 +.byte 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 +.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0xbc, 0x3e, 0x50, 0xa8, 0x4b, 0xcd, 0x40 +.byte 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c, 0x22, 0xb0, 0xfa, 0xb5, 0x7b, 0x76 +.byte 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26, 0x51, 0xe4, 0x20, 0x3d, 0x85, 0x0c +.byte 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1, 0xae, 0x26, 0xee, 0xeb, 0x53, 0xdc +.byte 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4, 0xda, 0xd2, 0x8e, 0x0d, 0x92, 0x3a +.byte 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f, 0x80, 0xb9, 0x02, 0xbd, 0x4a, 0x9d +.byte 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc, 0x1b, 0x9c, 0x3d, 0xb3, 0xb0, 0xde +.byte 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b, 0x14, 0xbd, 0x36, 0x84, 0xda, 0x0d +.byte 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39, 0x60, 0xee, 0x2f, 0x75, 0xb6, 0xe7 +.byte 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f, 0xef, 0x88, 0x0d, 0x6a, 0xfa, 0xdd +.byte 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70, 0xb9, 0xce, 0xd7, 0x72, 0x3b, 0x89 +.byte 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5, 0xff, 0x3b, 0x95, 0x9e, 0xc1, 0xcc +.byte 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3, 0xa6, 0x87, 0xe5, 0xd6, 0xf9, 0x05 +.byte 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a, 0x9c, 0xd5, 0x4d, 0x9d, 0x02, 0x0a +.byte 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad, 0x9f, 0x6c, 0x88, 0x00, 0xdc, 0x22 +.byte 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61, 0x3c, 0xbb, 0xca, 0x41, 0xcd, 0x5c +.byte 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26 +.byte 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57 +.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41, 0x49, 0x57, 0x41 +.byte 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0, 0x05, 0xdb, 0xc8, 0xeb, 0x8c, 0xc4, 0x6e, 0x8a, 0x21, 0xef +.byte 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d, 0x82, 0x9c, 0x97, 0xc5, 0xd7, 0x4c +.byte 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c, 0x19, 0xc2, 0x74, 0xa4, 0x31, 0x5f +.byte 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c, 0x8c, 0x8e, 0xb7, 0xb8, 0x79, 0xdb +.byte 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01, 0x07, 0x92, 0xd4, 0xb3, 0xd0, 0x02 +.byte 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47, 0x60, 0x2f, 0x2b, 0x32, 0x39, 0x35 +.byte 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8, 0x62, 0xd6, 0x47, 0x25, 0x91, 0xce +.byte 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75, 0x5f, 0x29, 0xf0, 0xa1, 0x30, 0x1c +.byte 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36, 0xf0, 0xe2, 0x91, 0x43, 0x8f, 0xfa +.byte 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1, 0x85, 0x70, 0x9b, 0xca, 0xea, 0xa8 +.byte 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45, 0xa9, 0xf0, 0x36, 0xc7, 0xcc, 0x88 +.byte 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17, 0xec, 0x61, 0xaa, 0x71, 0x7c, 0xc6 +.byte 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1, 0x61, 0xf5, 0x11, 0xf7, 0x05, 0x6f +.byte 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0, 0x09, 0x4e, 0x26, 0xdc, 0xe3, 0xa2 +.byte 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5, 0x98, 0xb8, 0x71, 0xa5, 0x15, 0x19 +.byte 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b, 0x1d, 0x91, 0x44, 0xfd, 0x56, 0x28 +.byte 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58, 0xdc, 0xc6, 0x4b, 0x76, 0xc8, 0xab +.byte 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f, 0x4f, 0x9e, 0x22, 0x82, 0xee, 0xa2 +.byte 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e, 0x32, 0x2c, 0x64, 0x00, 0x26, 0x63 +.byte 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d, 0xac, 0x6d, 0x90, 0xa2, 0x95, 0xa2 +.byte 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9, 0xb8, 0x21, 0xaa, 0x29, 0x7e, 0xa6 +.byte 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3, 0xc3, 0xb5, 0x09, 0x67, 0xde, 0xd6 +.byte 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60, 0xcb, 0x81, 0xb6, 0x0f, 0xa0, 0x0f +.byte 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf, 0x3d, 0x15, 0xc0, 0x6f, 0xde, 0x09 +.byte 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0, 0xb8, 0x9b, 0x67, 0xd5, 0x98, 0x91 +.byte 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8, 0x2b, 0x74, 0xb4, 0x00, 0x04, 0x3c +.byte 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67, 0x92, 0x33, 0x1d, 0xc0, 0xb7, 0xd2 +.byte 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f, 0x02, 0x6b, 0x9e, 0xef, 0xbc, 0xbf +.byte 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87, 0xb2, 0x4d, 0xb7, 0x04, 0xa9, 0x84 +.byte 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1, 0xfe, 0x6c, 0xe1, 0x90, 0x8c, 0x88 +.byte 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf, 0x5f, 0x6a, 0x0a, 0x42, 0xb1, 0x1e +.byte 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc, 0x05, 0x22, 0xd2, 0x26, 0xe1, 0x31 +.byte 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x54, 0x00, 0x26, 0x02, 0x30, 0x52 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x53, 0x4b, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72, 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61 +.byte 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x44, 0x69, 0x73 +.byte 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85, 0x5d, 0x2d, 0x6d, 0x14, 0xf6, 0xc2 +.byte 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb, 0xab, 0x46, 0x50, 0xe0, 0xc1, 0x7c +.byte 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c, 0x1c, 0x9f, 0xd8, 0x97, 0x02, 0x78 +.byte 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c, 0x45, 0xf6, 0x2f, 0x64, 0xd4, 0xab +.byte 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6, 0xcc, 0x1b, 0x3f, 0xba, 0xbe, 0xb2 +.byte 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f, 0xaa, 0x5f, 0xda, 0x4c, 0xce, 0x4d +.byte 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb, 0x4c, 0x0c, 0x00, 0x16, 0x3c, 0x5f +.byte 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7, 0xbc, 0xe8, 0xe5, 0xe1, 0x66, 0xd6 +.byte 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e, 0x05, 0x63, 0xc6, 0x80, 0x6a, 0x69 +.byte 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f, 0x95, 0x73, 0xf4, 0xe1, 0x25, 0xda +.byte 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1, 0xe8, 0x04, 0x14, 0x61, 0x2d, 0x41 +.byte 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e, 0x92, 0x18, 0x1b, 0x04, 0x5a, 0x68 +.byte 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11, 0x2b, 0xb7, 0xd6, 0x57, 0xcc, 0x7c +.byte 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e, 0x56, 0x0c, 0x78, 0x4d, 0x9e, 0x01 +.byte 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d, 0x84, 0x84, 0xdf, 0xea, 0xc0, 0x6b +.byte 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73, 0x1d, 0x0b, 0xb2, 0x46, 0x90, 0xd1 +.byte 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94, 0xad, 0x6e, 0x97, 0x84, 0x8e, 0x7d +.byte 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b, 0x92, 0x1e, 0xc3, 0xf3, 0xc1, 0xf3 +.byte 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04, 0xc8, 0xb4, 0x5a, 0xe4, 0x17, 0xa7 +.byte 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05, 0xb3, 0xd6, 0x9c, 0x34, 0xd8, 0x96 +.byte 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1, 0xda, 0xb9, 0x08, 0x65, 0xd4, 0xae +.byte 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b, 0x9e, 0xeb, 0x8d, 0x66, 0xdd, 0x99 +.byte 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29, 0x6d, 0x6b, 0x3a, 0x1c, 0xe7, 0x75 +.byte 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19, 0xdd, 0x9d, 0x60, 0xb2, 0xc2, 0x66 +.byte 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a, 0x66, 0x40, 0xa8, 0xe7, 0x11, 0xed +.byte 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06, 0x11, 0xbd, 0xdd, 0xcf, 0x80, 0x02 +.byte 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6, 0x1f, 0x81, 0x7b, 0xe4, 0x44, 0xa8 +.byte 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a, 0x44, 0x66, 0x4b, 0xe4, 0x32, 0x54 +.byte 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2, 0x34, 0x12, 0xd6, 0x7e, 0xb2, 0xa8 +.byte 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f, 0xdf, 0xe4, 0x37, 0x1f, 0x11, 0x73 +.byte 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06, 0x01, 0x55, 0x33, 0x7d, 0xb0, 0x0d +.byte 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11, 0x8c, 0x7b, 0x5e, 0xc4, 0x03, 0x9d +.byte 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x26, 0x02, 0x30, 0x54, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x26, 0x30, 0x24, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49, 0x4e, 0x47, 0x20, 0x43, 0x45 +.byte 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52 +.byte 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x14, 0x42, 0x4a +.byte 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xf1, 0x66, 0x08, 0xbd, 0xd9, 0xc5, 0x15, 0x61, 0xcb, 0x84, 0x04, 0x41, 0xa5 +.byte 0x69, 0x37, 0x77, 0x1d, 0xc1, 0xb0, 0x7b, 0xfa, 0xc3, 0x77, 0x48, 0x90, 0x13, 0x72, 0x64, 0xd1 +.byte 0xb8, 0x7c, 0x90, 0x35, 0x9d, 0x18, 0x79, 0x88, 0xe3, 0x97, 0x01, 0x3c, 0x47, 0x81, 0xf2, 0x0e +.byte 0xa2, 0x98, 0x0d, 0x9e, 0x3f, 0x37, 0xe0, 0x19, 0xb2, 0x90, 0xf2, 0x46, 0x1c, 0x92, 0xb1, 0x3a +.byte 0x61, 0xce, 0xfa, 0xb7, 0x46, 0x9e, 0x03, 0x86, 0xd7, 0x33, 0x6e, 0xed, 0xf7, 0x45, 0x8c, 0x76 +.byte 0x37, 0xde, 0x6e, 0x96, 0x91, 0xf7, 0xd7, 0x7e, 0x2b, 0x87, 0x17, 0xd5, 0x8b, 0x35, 0xee, 0x84 +.byte 0x91, 0x72, 0x57, 0xdc, 0x60, 0xc3, 0xc3, 0xb9, 0xe7, 0xc7, 0x67, 0x24, 0x23, 0x4f, 0x63, 0x0a +.byte 0x63, 0xf6, 0x66, 0x7d, 0x4b, 0x55, 0xa7, 0x3f, 0x78, 0x64, 0x49, 0x69, 0x12, 0x97, 0xe0, 0x4c +.byte 0x0d, 0xd3, 0x09, 0xa0, 0x32, 0x30, 0x3a, 0xfa, 0x9f, 0xc0, 0xf2, 0x9c, 0xc5, 0x12, 0x2a, 0x2e +.byte 0x1c, 0xb5, 0x04, 0x33, 0xda, 0xa4, 0x38, 0x11, 0x6a, 0xde, 0xc6, 0x18, 0xf6, 0x47, 0x3a, 0x22 +.byte 0x41, 0x87, 0x22, 0xfc, 0xc4, 0x89, 0x28, 0x54, 0xd8, 0x8c, 0xa5, 0x30, 0x0a, 0xf8, 0x17, 0x16 +.byte 0xca, 0xac, 0x37, 0xfd, 0x79, 0xa7, 0x91, 0x17, 0x78, 0x38, 0x99, 0xad, 0x58, 0xed, 0xb2, 0xde +.byte 0xcc, 0x89, 0x7d, 0x03, 0x9c, 0xb3, 0x89, 0x65, 0xe7, 0xe3, 0x3b, 0xb1, 0x22, 0x86, 0x8f, 0x06 +.byte 0x6d, 0x78, 0x07, 0xfd, 0x91, 0x12, 0x7f, 0xb0, 0x6b, 0x1c, 0x89, 0x0d, 0xf9, 0xb8, 0xcb, 0x74 +.byte 0x5b, 0x07, 0xc2, 0xc8, 0xf4, 0x35, 0xd1, 0x64, 0x63, 0x7a, 0xe9, 0x6e, 0x9a, 0x28, 0xd6, 0x30 +.byte 0xbd, 0xe6, 0x1b, 0xdd, 0x15, 0xaf, 0x84, 0xea, 0x9c, 0xc7, 0xca, 0xf5, 0x0e, 0xea, 0xf2, 0x5d +.byte 0x29, 0x87, 0x8f, 0x69, 0x73, 0x39, 0xbe, 0x2e, 0x24, 0x6f, 0x45, 0x21, 0xac, 0xc5, 0xd4, 0x69 +.byte 0x25, 0x06, 0x83, 0xad, 0x7a, 0x48, 0x85, 0x13, 0x2c, 0x0d, 0x06, 0xb8, 0x6c, 0x79, 0x56, 0xfc +.byte 0xa3, 0x67, 0x32, 0x81, 0xf5, 0x57, 0xa5, 0xca, 0x57, 0x42, 0x69, 0xe9, 0x5c, 0x24, 0x61, 0xef +.byte 0xe2, 0x30, 0x18, 0x4e, 0x44, 0x98, 0x55, 0x6f, 0x7a, 0xc2, 0x93, 0xd8, 0x19, 0xb6, 0xde, 0x7c +.byte 0x47, 0x8a, 0x11, 0x4e, 0x49, 0x47, 0xdb, 0x28, 0x94, 0x02, 0x0b, 0x94, 0x4a, 0x2c, 0xf9, 0x12 +.byte 0xd0, 0x4f, 0xe8, 0x31, 0x7e, 0x6c, 0x7a, 0xbf, 0xa6, 0x3f, 0x9b, 0x39, 0x3d, 0x02, 0x16, 0xa3 +.byte 0x18, 0xb3, 0x67, 0xac, 0x5b, 0x3f, 0x2c, 0x83, 0x2b, 0x67, 0x39, 0x81, 0x5c, 0xb9, 0x7e, 0x94 +.byte 0xd5, 0x64, 0xdd, 0x9e, 0x8f, 0x6e, 0xae, 0xe8, 0x7c, 0x5b, 0xb4, 0xd7, 0x6a, 0x47, 0x48, 0xd7 +.byte 0x7e, 0xb3, 0xd4, 0x2d, 0x8e, 0x56, 0x76, 0x4e, 0xcf, 0x69, 0xf1, 0x6e, 0x44, 0x6c, 0xd4, 0x24 +.byte 0xea, 0x8d, 0x24, 0xa1, 0x18, 0xbf, 0xbd, 0x57, 0xfe, 0xa9, 0x99, 0x35, 0xb5, 0xdb, 0x10, 0x77 +.byte 0xb8, 0x3d, 0x48, 0xba, 0xd6, 0xc1, 0xe7, 0xf1, 0x23, 0x3e, 0xd7, 0xdf, 0x85, 0x9d, 0x27, 0x3c +.byte 0xd4, 0x40, 0xbd, 0x0a, 0x0c, 0xbd, 0xf5, 0xe7, 0x8d, 0x25, 0xd6, 0x81, 0x74, 0x87, 0x46, 0xd4 +.byte 0x29, 0x75, 0xa2, 0x42, 0x6c, 0xf7, 0x73, 0x89, 0xe7, 0x7d, 0xbf, 0x7a, 0x4a, 0x1f, 0xd3, 0x22 +.byte 0xc9, 0x15, 0x55, 0xcf, 0xdf, 0x6f, 0x7c, 0x55, 0xd0, 0xa4, 0x8b, 0x07, 0x11, 0x37, 0x5f, 0x83 +.byte 0xa6, 0x26, 0x57, 0xa6, 0x01, 0x5b, 0x7e, 0xfe, 0x58, 0x68, 0x07, 0xa9, 0xe9, 0x7a, 0xd9, 0xb9 +.byte 0xe8, 0xff, 0x50, 0x1f, 0xab, 0xc2, 0xb4, 0xc0, 0xce, 0xe8, 0xea, 0xfd, 0x0f, 0xbd, 0x8d, 0x4d +.byte 0xb8, 0xbc, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x78, 0x00, 0x30, 0x54, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x26, 0x30, 0x24, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49, 0x4e, 0x47, 0x20, 0x43, 0x45 +.byte 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52 +.byte 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x14, 0x42, 0x4a +.byte 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x9d, 0xcb, 0x80, 0x91, 0x8d, 0x53 +.byte 0x67, 0xb5, 0xb9, 0x50, 0xb1, 0x03, 0xf8, 0xe5, 0x49, 0x1f, 0x41, 0x22, 0x09, 0xb0, 0x51, 0x52 +.byte 0x58, 0xd6, 0x2b, 0x34, 0x8f, 0xc5, 0x12, 0x46, 0x14, 0xc5, 0x8b, 0x2f, 0x2c, 0x84, 0xff, 0x2c +.byte 0x6e, 0xa8, 0xd5, 0xf1, 0x09, 0xe3, 0x03, 0x21, 0x14, 0xc4, 0x43, 0x3d, 0x7c, 0xc1, 0x2c, 0xc4 +.byte 0x4b, 0x6a, 0x4a, 0xcd, 0xe9, 0x87, 0xe0, 0x7d, 0xf6, 0x22, 0xbe, 0xfa, 0x4a, 0x51, 0xb8, 0x30 +.byte 0x8a, 0xfd, 0xe1, 0xde, 0x18, 0x12, 0x0a, 0xf6, 0x47, 0xb7, 0xe7, 0x17, 0xbf, 0x27, 0x8a, 0xd4 +.byte 0x41, 0x4c, 0x96, 0x3c, 0x60, 0x96, 0xc1, 0xfd, 0x15, 0x1c, 0x58, 0x00, 0x26, 0x02, 0x30, 0x56 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x30, 0x30 +.byte 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x46, 0x69 +.byte 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31 +.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43, 0x46, 0x43, 0x41, 0x20, 0x45 +.byte 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0x5d, 0x6b, 0xcd, 0x10, 0x3f, 0x1f, 0x05, 0x59 +.byte 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15, 0x1d, 0xfa, 0x93, 0x4b, 0x17 +.byte 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2, 0x55, 0x69, 0x4d, 0x8e, 0x15 +.byte 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c, 0xac, 0xcf, 0x22, 0xae, 0xaf +.byte 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee, 0x2e, 0xde, 0xb3, 0x71, 0x25 +.byte 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c, 0xc9, 0x23, 0x1d, 0x6a, 0xab +.byte 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15, 0xcf, 0x72, 0x2f, 0x1d, 0x63 +.byte 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52, 0xd4, 0x52, 0xab, 0x2e, 0x49 +.byte 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d, 0x20, 0xd4, 0x25, 0xe8, 0x84 +.byte 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f, 0x0a, 0xa9, 0x2d, 0x41, 0x3f +.byte 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a, 0xa8, 0x06, 0xd7, 0xa8, 0x88 +.byte 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c, 0x96, 0x65, 0x7b, 0xca, 0x59 +.byte 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac, 0xc4, 0x63, 0xeb, 0x6f, 0x7f +.byte 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e, 0xf1, 0x72, 0x5d, 0x50, 0x65 +.byte 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a, 0xb5, 0x95, 0x8f, 0xb0, 0x7a +.byte 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1, 0x39, 0xd3, 0x97, 0x5b, 0x73 +.byte 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20, 0x49, 0x73, 0xf0, 0x05, 0xd2 +.byte 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9, 0x5a, 0xd6, 0x38, 0xf4, 0x62 +.byte 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9, 0x95, 0x4f, 0x5f, 0xa7, 0x2d +.byte 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7, 0xf4, 0xb2, 0x66, 0x2e, 0x10 +.byte 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d, 0x6c, 0x6e, 0x7f, 0x39, 0x58 +.byte 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32, 0xc6, 0x87, 0xa4, 0x37, 0xe9 +.byte 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70, 0xc1, 0x9b, 0xad, 0x4d, 0x6d +.byte 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70, 0x45, 0x0d, 0x6b, 0x5e, 0x35 +.byte 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25, 0x93, 0xda, 0x0a, 0x99, 0x22 +.byte 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83, 0xad, 0x1d, 0x58, 0x8a, 0x25 +.byte 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6, 0xe1, 0x7f, 0x8a, 0x04, 0x21 +.byte 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1, 0x8a, 0x3e, 0x5a, 0xaa, 0x0c +.byte 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34, 0xfa, 0x38, 0xf9, 0x08, 0x0e +.byte 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8, 0x54, 0x53, 0x2e, 0x78, 0x32 +.byte 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60, 0xb9, 0x70, 0xdb, 0x8e, 0x0b +.byte 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1, 0x41, 0x09, 0xef, 0x72, 0x1f +.byte 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x58, 0x00, 0x26, 0x01 +.byte 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65 +.byte 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcf, 0xeb, 0xa9, 0xb9, 0xf1, 0x99, 0x05 +.byte 0xcc, 0xd8, 0x28, 0x21, 0x4a, 0xf3, 0x73, 0x34, 0x51, 0x84, 0x56, 0x10, 0xf5, 0xa0, 0x4f, 0x2c +.byte 0x12, 0xe3, 0xfa, 0x13, 0x9a, 0x27, 0xd0, 0xcf, 0xf9, 0x79, 0x1a, 0x74, 0x5f, 0x1d, 0x79, 0x39 +.byte 0xfc, 0x5b, 0xf8, 0x70, 0x8e, 0xe0, 0x92, 0x52, 0xf7, 0xe4, 0x25, 0xf9, 0x54, 0x83, 0xd9, 0x1d +.byte 0xd3, 0xc8, 0x5a, 0x85, 0x3f, 0x5e, 0xc7, 0xb6, 0x07, 0xee, 0x3e, 0xc0, 0xce, 0x9a, 0xaf, 0xac +.byte 0x56, 0x42, 0x2a, 0x39, 0x25, 0x70, 0xd6, 0xbf, 0xb5, 0x7b, 0x36, 0xad, 0xac, 0xf6, 0x73, 0xdc +.byte 0xcd, 0xd7, 0x1d, 0x8a, 0x83, 0xa5, 0xfb, 0x2b, 0x90, 0x15, 0x37, 0x6b, 0x1c, 0x26, 0x47, 0xdc +.byte 0x3b, 0x29, 0x56, 0x93, 0x6a, 0xb3, 0xc1, 0x6a, 0x3a, 0x9d, 0x3d, 0xf5, 0xc1, 0x97, 0x38, 0x58 +.byte 0x05, 0x8b, 0x1c, 0x11, 0xe3, 0xe4, 0xb4, 0xb8, 0x5d, 0x85, 0x1d, 0x83, 0xfe, 0x78, 0x5f, 0x0b +.byte 0x45, 0x68, 0x18, 0x48, 0xa5, 0x46, 0x73, 0x34, 0x3b, 0xfe, 0x0f, 0xc8, 0x76, 0xbb, 0xc7, 0x18 +.byte 0xf3, 0x05, 0xd1, 0x86, 0xf3, 0x85, 0xed, 0xe7, 0xb9, 0xd9, 0x32, 0xad, 0x55, 0x88, 0xce, 0xa6 +.byte 0xb6, 0x91, 0xb0, 0x4f, 0xac, 0x7e, 0x15, 0x23, 0x96, 0xf6, 0x3f, 0xf0, 0x20, 0x34, 0x16, 0xde +.byte 0x0a, 0xc6, 0xc4, 0x04, 0x45, 0x79, 0x7f, 0xa7, 0xfd, 0xbe, 0xd2, 0xa9, 0xa5, 0xaf, 0x9c, 0xc5 +.byte 0x23, 0x2a, 0xf7, 0x3c, 0x21, 0x6c, 0xbd, 0xaf, 0x8f, 0x4e, 0xc5, 0x3a, 0xb2, 0xf3, 0x34, 0x12 +.byte 0xfc, 0xdf, 0x80, 0x1a, 0x49, 0xa4, 0xd4, 0xa9, 0x95, 0xf7, 0x9e, 0x89, 0x5e, 0xa2, 0x89, 0xac +.byte 0x94, 0xcb, 0xa8, 0x68, 0x9b, 0xaf, 0x8a, 0x65, 0x27, 0xcd, 0x89, 0xee, 0xdd, 0x8c, 0xb5, 0x6b +.byte 0x29, 0x70, 0x43, 0xa0, 0x69, 0x0b, 0xe4, 0xb9, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x59, 0x00 +.byte 0x26, 0x01, 0x30, 0x57, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42 +.byte 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x10, 0x30, 0x0e +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1b +.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xda, 0x0e, 0xe6, 0x99 +.byte 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83, 0x25, 0x6b, 0xea, 0x48, 0x1f +.byte 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1, 0xe2, 0x67, 0x66, 0xcf, 0x1c +.byte 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf, 0x29, 0x80, 0x65, 0xab, 0xe9 +.byte 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d, 0x0a, 0x30, 0xcd, 0x15, 0x8d +.byte 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee, 0xc4, 0x2e, 0xf7, 0xfc, 0xe9 +.byte 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e, 0x43, 0x73, 0xf2, 0x41, 0xe9 +.byte 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06, 0x3c, 0x88, 0x69, 0x5b, 0x2a +.byte 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c, 0xca, 0xe5, 0xfd, 0x89, 0xf5 +.byte 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44, 0x61, 0xd1, 0x8d, 0xc7, 0x46 +.byte 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5, 0x78, 0x16, 0x95, 0xa2, 0xe9 +.byte 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93, 0x13, 0x85, 0x3a, 0x1b, 0xbc +.byte 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb, 0x1f, 0x20, 0x91, 0xab, 0x09 +.byte 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91, 0x22, 0x51, 0x63, 0x16, 0x79 +.byte 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46, 0xaa, 0x48, 0xd6, 0x64, 0x2a +.byte 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a, 0x07, 0x85, 0xe7, 0xd3, 0x7c +.byte 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90, 0xcf, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x5c, 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c +.byte 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20 +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x47 +.byte 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xc0, 0x31, 0x82, 0x61, 0x92, 0xe4, 0x94, 0x1b, 0x0a, 0x2a, 0x65, 0xd0, 0xbe, 0x06 +.byte 0xa9, 0x87, 0x3b, 0x51, 0x12, 0xea, 0x70, 0x41, 0xae, 0xe2, 0xfb, 0x74, 0xea, 0x0a, 0x8d, 0xb9 +.byte 0xb3, 0x4c, 0xdc, 0x8f, 0xb7, 0x13, 0x52, 0x4f, 0x54, 0x18, 0xe1, 0x2c, 0x73, 0x95, 0x91, 0xc5 +.byte 0x66, 0x3b, 0x6a, 0xcf, 0xac, 0x63, 0x6d, 0x87, 0x53, 0xf0, 0xf7, 0xf1, 0x39, 0xb7, 0xa0, 0x43 +.byte 0x63, 0xb0, 0xc4, 0x03, 0x5d, 0x57, 0xa9, 0xe7, 0x44, 0xce, 0xc4, 0xa1, 0x83, 0x65, 0xf6, 0x50 +.byte 0x3e, 0xb1, 0x7e, 0x16, 0xb8, 0x3a, 0x8a, 0x02, 0xd0, 0x96, 0x1f, 0x00, 0xcd, 0x05, 0x21, 0xef +.byte 0x06, 0x6d, 0xdd, 0x21, 0x9c, 0x19, 0x43, 0x45, 0xa1, 0xc5, 0xe8, 0x80, 0xca, 0xc2, 0xad, 0x40 +.byte 0x62, 0x17, 0x06, 0xc6, 0xaa, 0xbc, 0xf3, 0xd6, 0xe6, 0xfc, 0x50, 0x7e, 0x66, 0x42, 0x1f, 0x3c +.byte 0x8b, 0xa6, 0x79, 0x79, 0x86, 0x40, 0x35, 0x9f, 0x20, 0xef, 0x3f, 0xeb, 0x8b, 0x47, 0x1f, 0x8f +.byte 0x8e, 0xc5, 0xd4, 0x8e, 0xb6, 0x2c, 0xc9, 0x44, 0x04, 0xe3, 0xd4, 0x43, 0x75, 0x3f, 0xd5, 0x3f +.byte 0xaf, 0x1c, 0xcc, 0x7e, 0x46, 0x5f, 0xac, 0xdf, 0x64, 0x10, 0x8a, 0xef, 0x46, 0xf0, 0x90, 0xf0 +.byte 0x0f, 0x2d, 0xf4, 0x88, 0x0b, 0xb1, 0x29, 0xaa, 0xaf, 0x85, 0xaa, 0x49, 0x58, 0xa8, 0xbf, 0x63 +.byte 0xa0, 0x38, 0x91, 0xe6, 0xb3, 0xe6, 0x77, 0x68, 0xc4, 0xf9, 0x2a, 0x19, 0x84, 0xbb, 0x0e, 0xe1 +.byte 0xf5, 0xaf, 0x89, 0xec, 0xa5, 0x2f, 0x50, 0x20, 0x74, 0x1e, 0x12, 0x41, 0x73, 0x1e, 0x24, 0xd9 +.byte 0xca, 0xce, 0x2c, 0xa1, 0x59, 0x35, 0xc0, 0xc8, 0x1d, 0x46, 0x27, 0x61, 0x5a, 0x8f, 0xf9, 0x4d +.byte 0xd3, 0x72, 0x79, 0x66, 0x1e, 0x9f, 0x15, 0x90, 0x21, 0x2d, 0xfd, 0xed, 0x8b, 0x56, 0x70, 0x03 +.byte 0x4a, 0x49, 0x3e, 0x7f, 0x69, 0x31, 0x12, 0x69, 0xc7, 0x1e, 0x5c, 0xca, 0x7a, 0x13, 0x8b, 0xe8 +.byte 0xe6, 0xf5, 0x60, 0x0f, 0xcc, 0x93, 0x2c, 0x84, 0x7f, 0xf1, 0xfc, 0x6a, 0xfc, 0x9b, 0x47, 0x9d +.byte 0xdb, 0xad, 0x88, 0x3d, 0xf3, 0x76, 0x75, 0x33, 0xd7, 0x4b, 0xa4, 0xc8, 0x8b, 0xf9, 0xf5, 0x43 +.byte 0x58, 0x4f, 0xcb, 0xc8, 0x03, 0x54, 0x8f, 0xa5, 0x85, 0x78, 0x04, 0x1a, 0xf3, 0x73, 0xf2, 0xd7 +.byte 0x87, 0x1d, 0x41, 0x9f, 0xe7, 0xd8, 0x17, 0xce, 0x1a, 0x9c, 0x0f, 0x4a, 0xfc, 0xdc, 0x44, 0x68 +.byte 0x54, 0x68, 0xe2, 0x41, 0x3c, 0xfe, 0x2c, 0x84, 0x86, 0x37, 0x3c, 0xcd, 0x3f, 0x2f, 0xa2, 0xdb +.byte 0xe7, 0xf7, 0x54, 0x03, 0x5f, 0x59, 0xd3, 0xf7, 0x91, 0x78, 0xc7, 0x8b, 0x77, 0x6a, 0x16, 0xe5 +.byte 0x49, 0x85, 0x90, 0x45, 0x72, 0x70, 0x2f, 0x91, 0x5d, 0xf8, 0x3e, 0x65, 0x40, 0x0b, 0x19, 0x99 +.byte 0xc9, 0x26, 0x20, 0x5a, 0x68, 0xc1, 0x35, 0xbf, 0x4f, 0xa7, 0x51, 0xf1, 0xd8, 0x11, 0x2b, 0x5b +.byte 0xe0, 0x9a, 0x9e, 0x28, 0x3b, 0x0a, 0x3a, 0x0a, 0x1f, 0xc1, 0x81, 0xe5, 0x2e, 0xf0, 0xa6, 0xb9 +.byte 0x69, 0xa5, 0x88, 0x94, 0xe6, 0x6b, 0x13, 0x7f, 0xd1, 0x64, 0x3f, 0x3d, 0x9c, 0x70, 0x46, 0xe5 +.byte 0xa2, 0x85, 0x7b, 0x58, 0x84, 0x27, 0xdc, 0xc4, 0x80, 0x3e, 0x67, 0x9a, 0x9a, 0xc7, 0x9a, 0x31 +.byte 0x0e, 0x30, 0xec, 0xe6, 0x17, 0x40, 0x95, 0xd9, 0x45, 0xed, 0x01, 0x96, 0xaa, 0xbf, 0x0c, 0xf3 +.byte 0x4b, 0xd1, 0x63, 0xf7, 0x13, 0x58, 0xc0, 0xb8, 0xf3, 0xfa, 0x67, 0xdd, 0x9b, 0x7d, 0x6d, 0x4a +.byte 0xff, 0x32, 0x4c, 0xb5, 0x25, 0x3b, 0xff, 0x1c, 0x67, 0x0f, 0x85, 0x22, 0x59, 0x05, 0x91, 0x91 +.byte 0x41, 0x77, 0x81, 0xd0, 0x85, 0x4c, 0x87, 0x10, 0x71, 0xff, 0x9e, 0x43, 0x1b, 0xae, 0x95, 0x75 +.byte 0x2d, 0x81, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x78, 0x00, 0x30, 0x5a, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54 +.byte 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x47, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf1 +.byte 0xb3, 0xcd, 0x38, 0xe4, 0x25, 0x43, 0xe5, 0xde, 0x19, 0x09, 0xbb, 0x81, 0x79, 0xa2, 0x15, 0x5f +.byte 0x15, 0x63, 0x01, 0xde, 0xc2, 0xab, 0xdd, 0xb3, 0xa6, 0x1b, 0x67, 0x4b, 0x80, 0x83, 0xaf, 0x99 +.byte 0xcb, 0xac, 0x17, 0xdb, 0x2b, 0x96, 0xca, 0x7c, 0x52, 0x55, 0xe2, 0x1a, 0xe1, 0x3d, 0x56, 0xf0 +.byte 0x2f, 0x16, 0x08, 0xfa, 0x15, 0xbc, 0x9b, 0xbb, 0x47, 0xe6, 0x3f, 0xee, 0xa8, 0xe1, 0x4c, 0x8c +.byte 0xf5, 0xd3, 0x36, 0xf9, 0x38, 0x5d, 0xab, 0x70, 0x9a, 0x47, 0x0d, 0xe2, 0x81, 0x41, 0x06, 0xeb +.byte 0x49, 0xf9, 0xb0, 0x29, 0xdd, 0x33, 0xec, 0x50, 0xa5, 0x7f, 0x79, 0x29, 0xb8, 0x20, 0x98, 0x5c +.byte 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69 +.byte 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c +.byte 0x13, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34, 0x38, 0x31, 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30 +.byte 0x30, 0x30, 0x33, 0x36, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xcd, 0x18, 0x39, 0x65, 0x1a, 0x59, 0xb1, 0xea, 0x64, 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c +.byte 0x83, 0xd3, 0xc5, 0x39, 0x26, 0xdc, 0x0c, 0xef, 0x16, 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42 +.byte 0x7f, 0x82, 0xca, 0xed, 0xcd, 0x5b, 0xdb, 0x0e, 0xb7, 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9 +.byte 0xb3, 0xcb, 0xd6, 0x17, 0x52, 0x72, 0x28, 0xdb, 0x8e, 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e +.byte 0x84, 0x9a, 0x4d, 0x76, 0xde, 0x22, 0x29, 0x5c, 0xd2, 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9 +.byte 0x74, 0xa3, 0x92, 0x56, 0x1c, 0xa1, 0x6f, 0x4c, 0x0a, 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6 +.byte 0xda, 0x2c, 0xe4, 0x1d, 0x2c, 0xdc, 0xb3, 0x28, 0xd0, 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1 +.byte 0x54, 0x40, 0x9e, 0xe6, 0xe5, 0x05, 0xa0, 0x2d, 0x84, 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a +.byte 0x1a, 0x84, 0x08, 0x1e, 0xb7, 0x68, 0x23, 0xee, 0x23, 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10 +.byte 0xee, 0xa1, 0x7a, 0xc2, 0xd1, 0x22, 0x31, 0xc2, 0x82, 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c +.byte 0x25, 0x7a, 0xc9, 0x84, 0x5c, 0x0b, 0xac, 0xdd, 0x42, 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89 +.byte 0xcb, 0x90, 0xb2, 0xd0, 0xee, 0x23, 0xba, 0x66, 0x4c, 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64 +.byte 0x7b, 0x7c, 0x98, 0xfa, 0xa3, 0x48, 0x9e, 0x0f, 0x95, 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e +.byte 0x03, 0x45, 0xaf, 0xf0, 0x74, 0xf8, 0x2a, 0xcd, 0x7a, 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29 +.byte 0xf1, 0xf1, 0xf5, 0x6c, 0xcc, 0x7e, 0x02, 0x21, 0x0b, 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53 +.byte 0xe2, 0xcf, 0x7d, 0xa9, 0x2c, 0x7c, 0x58, 0x1a, 0x97, 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28 +.byte 0xd2, 0x40, 0xc5, 0x51, 0x8a, 0x8c, 0xc3, 0x2d, 0xce, 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16 +.byte 0xc5, 0xaa, 0xe0, 0xd6, 0x0a, 0xa6, 0x40, 0xdf, 0x78, 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84 +.byte 0xbc, 0xd1, 0xd1, 0xa7, 0x06, 0xcf, 0x01, 0xf7, 0x68, 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad +.byte 0x04, 0x8c, 0x93, 0xe3, 0xad, 0xfc, 0xf0, 0xdb, 0x44, 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac +.byte 0x9a, 0x99, 0x36, 0x30, 0x41, 0x7b, 0x76, 0x33, 0x22, 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9 +.byte 0x70, 0xee, 0xae, 0x87, 0x87, 0x95, 0x1b, 0xc4, 0x7a, 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99 +.byte 0xff, 0xbe, 0x48, 0xec, 0x75, 0xf5, 0x78, 0x16, 0x1d, 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1 +.byte 0x92, 0xfb, 0xcf, 0xc8, 0x3c, 0xd6, 0xc5, 0x93, 0x0a, 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce +.byte 0x59, 0x98, 0x8a, 0x09, 0x95, 0x77, 0x32, 0x9a, 0x83, 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4 +.byte 0x2f, 0xbe, 0xd7, 0x6c, 0x9b, 0xa2, 0xca, 0x7d, 0x6d, 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79 +.byte 0x52, 0x08, 0x09, 0x99, 0x07, 0x24, 0x2d, 0x64, 0x25, 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd +.byte 0x74, 0x4d, 0x6b, 0x97, 0x7a, 0x41, 0xbd, 0xab, 0x17, 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9 +.byte 0x2d, 0xd5, 0xc5, 0xdb, 0xee, 0xaa, 0x85, 0x45, 0x41, 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6 +.byte 0x36, 0x4c, 0x9b, 0x90, 0x57, 0xec, 0x23, 0xb9, 0x87, 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86 +.byte 0x2a, 0x28, 0x4d, 0xe2, 0x74, 0xc0, 0xda, 0xc4, 0x8c, 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce +.byte 0x24, 0x59, 0x74, 0x31, 0xda, 0x7f, 0xfd, 0x30, 0x6d, 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x26, 0x01, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x45, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x09, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74 +.byte 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xa3, 0x04, 0xbb, 0x22, 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26 +.byte 0x72, 0x9a, 0xb5, 0x79, 0xd4, 0x29, 0xe2, 0xe1, 0xe8, 0x95, 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e +.byte 0x2b, 0x29, 0x9a, 0x64, 0xdf, 0xa1, 0x5d, 0xed, 0xb0, 0x09, 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce +.byte 0x62, 0xa2, 0x62, 0xfe, 0xb4, 0x88, 0xda, 0x12, 0xeb, 0x38, 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b +.byte 0x01, 0x52, 0x7b, 0x88, 0x77, 0xd3, 0x1c, 0x8f, 0xc7, 0xba, 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7 +.byte 0x73, 0xe8, 0x11, 0x40, 0xa7, 0xd1, 0xcc, 0xca, 0x62, 0x8d, 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50 +.byte 0xd2, 0xa8, 0x50, 0xc3, 0x28, 0xea, 0xf5, 0xab, 0x25, 0x87, 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67 +.byte 0xb8, 0x3f, 0x0c, 0xd5, 0xf7, 0xf9, 0x52, 0x13, 0x2f, 0xc2, 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f +.byte 0xc0, 0x12, 0xca, 0x06, 0xcb, 0x9a, 0xe1, 0xd9, 0xca, 0x33, 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9 +.byte 0xf1, 0x68, 0x44, 0x42, 0x48, 0x13, 0xd2, 0xc0, 0xc2, 0xa4, 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6 +.byte 0x05, 0xfc, 0xb4, 0xdd, 0x07, 0x59, 0x02, 0xd4, 0x59, 0x18, 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0 +.byte 0x90, 0x0c, 0x7d, 0x5d, 0xb2, 0x06, 0x7a, 0xf3, 0x85, 0xea, 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84 +.byte 0x3e, 0x5f, 0xff, 0x15, 0xed, 0x69, 0xbc, 0xf9, 0x39, 0x36, 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d +.byte 0xf3, 0xc9, 0x90, 0x2c, 0xb9, 0x3d, 0xe5, 0xc9, 0x23, 0x53, 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c +.byte 0x07, 0x99, 0x29, 0xbd, 0xc6, 0x3a, 0xec, 0xe7, 0x6e, 0x86, 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33 +.byte 0xbd, 0x68, 0x18, 0x31, 0xf0, 0x78, 0x8d, 0x76, 0xbf, 0xfc, 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7 +.byte 0x4d, 0x90, 0xdc, 0x27, 0x1a, 0x39, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x78, 0x00, 0x30 +.byte 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20 +.byte 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65, 0x4d +.byte 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06 +.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 +.byte 0x62, 0x00, 0x04, 0xfd, 0xa5, 0x61, 0xae, 0x7b, 0x26, 0x10, 0x1d, 0xe9, 0xb7, 0x22, 0x30, 0xae +.byte 0x06, 0xf4, 0x81, 0xb3, 0xb1, 0x42, 0x71, 0x95, 0x39, 0xbc, 0xd3, 0x52, 0xe3, 0xaf, 0xaf, 0xf9 +.byte 0xf2, 0x97, 0x35, 0x92, 0x36, 0x46, 0x0e, 0x87, 0x95, 0x8d, 0xb9, 0x39, 0x5a, 0xe9, 0xbb, 0xdf +.byte 0xd0, 0xfe, 0xc8, 0x07, 0x41, 0x3c, 0xbb, 0x55, 0x6f, 0x83, 0xa3, 0x6a, 0xfb, 0x62, 0xb0, 0x81 +.byte 0x89, 0x02, 0x70, 0x7d, 0x48, 0xc5, 0x4a, 0xe3, 0xe9, 0x22, 0x54, 0x22, 0x4d, 0x93, 0xbb, 0x42 +.byte 0x0c, 0xaf, 0x77, 0x9c, 0x23, 0xa6, 0x7d, 0xd7, 0x61, 0x11, 0xce, 0x65, 0xc7, 0xf8, 0x7f, 0xfe +.byte 0xf5, 0xf2, 0xa9, 0x5f, 0x00, 0x26, 0x01, 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73 +.byte 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79 +.byte 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x15, 0x39, 0x52, 0xb1, 0x52, 0xb3, 0xba, 0xc5 +.byte 0x59, 0x82, 0xc4, 0x5d, 0x52, 0xae, 0x3a, 0x43, 0x65, 0x80, 0x4b, 0xc7, 0xf2, 0x96, 0xbc, 0xdb +.byte 0x36, 0x97, 0xd6, 0xa6, 0x64, 0x8c, 0xa8, 0x5e, 0xf0, 0xe3, 0x0a, 0x1c, 0xf7, 0xdf, 0x97, 0x3d +.byte 0x4b, 0xae, 0xf6, 0x5d, 0xec, 0x21, 0xb5, 0x41, 0xab, 0xcd, 0xb9, 0x7e, 0x76, 0x9f, 0xbe, 0xf9 +.byte 0x3e, 0x36, 0x34, 0xa0, 0x3b, 0xc1, 0xf6, 0x31, 0x11, 0x45, 0x74, 0x93, 0x3d, 0x57, 0x80, 0xc5 +.byte 0xf9, 0x89, 0x99, 0xca, 0xe5, 0xab, 0x6a, 0xd4, 0xb5, 0xda, 0x41, 0x90, 0x10, 0xc1, 0xd6, 0xd6 +.byte 0x42, 0x89, 0xc2, 0xbf, 0xf4, 0x38, 0x12, 0x95, 0x4c, 0x54, 0x05, 0xf7, 0x36, 0xe4, 0x45, 0x83 +.byte 0x7b, 0x14, 0x65, 0xd6, 0xdc, 0x0c, 0x4d, 0xd1, 0xde, 0x7e, 0x0c, 0xab, 0x3b, 0xc4, 0x15, 0xbe +.byte 0x3a, 0x56, 0xa6, 0x5a, 0x6f, 0x76, 0x69, 0x52, 0xa9, 0x7a, 0xb9, 0xc8, 0xeb, 0x6a, 0x9a, 0x5d +.byte 0x52, 0xd0, 0x2d, 0x0a, 0x6b, 0x35, 0x16, 0x09, 0x10, 0x84, 0xd0, 0x6a, 0xca, 0x3a, 0x06, 0x00 +.byte 0x37, 0x47, 0xe4, 0x7e, 0x57, 0x4f, 0x3f, 0x8b, 0xeb, 0x67, 0xb8, 0x88, 0xaa, 0xc5, 0xbe, 0x53 +.byte 0x55, 0xb2, 0x91, 0xc4, 0x7d, 0xb9, 0xb0, 0x85, 0x19, 0x06, 0x78, 0x2e, 0xdb, 0x61, 0x1a, 0xfa +.byte 0x85, 0xf5, 0x4a, 0x91, 0xa1, 0xe7, 0x16, 0xd5, 0x8e, 0xa2, 0x39, 0xdf, 0x94, 0xb8, 0x70, 0x1f +.byte 0x28, 0x3f, 0x8b, 0xfc, 0x40, 0x5e, 0x63, 0x83, 0x3c, 0x83, 0x2a, 0x1a, 0x99, 0x6b, 0xcf, 0xde +.byte 0x59, 0x6a, 0x3b, 0xfc, 0x6f, 0x16, 0xd7, 0x1f, 0xfd, 0x4a, 0x10, 0xeb, 0x4e, 0x82, 0x16, 0x3a +.byte 0xac, 0x27, 0x0c, 0x53, 0xf1, 0xad, 0xd5, 0x24, 0xb0, 0x6b, 0x03, 0x50, 0xc1, 0x2d, 0x3c, 0x16 +.byte 0xdd, 0x44, 0x34, 0x27, 0x1a, 0x75, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x60, 0x00, 0x26, 0x02 +.byte 0x30, 0x5e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31 +.byte 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e, 0x67, 0x68 +.byte 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20 +.byte 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x21, 0x65 +.byte 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xe1, 0x25, 0x0f, 0xee, 0x8d, 0xdb, 0x88, 0x33, 0x75, 0x67, 0xcd, 0xad, 0x1f, 0x7d, 0x3a +.byte 0x4e, 0x6d, 0x9d, 0xd3, 0x2f, 0x14, 0xf3, 0x63, 0x74, 0xcb, 0x01, 0x21, 0x6a, 0x37, 0xea, 0x84 +.byte 0x50, 0x07, 0x4b, 0x26, 0x5b, 0x09, 0x43, 0x6c, 0x21, 0x9e, 0x6a, 0xc8, 0xd5, 0x03, 0xf5, 0x60 +.byte 0x69, 0x8f, 0xcc, 0xf0, 0x22, 0xe4, 0x1f, 0xe7, 0xf7, 0x6a, 0x22, 0x31, 0xb7, 0x2c, 0x15, 0xf2 +.byte 0xe0, 0xfe, 0x00, 0x6a, 0x43, 0xff, 0x87, 0x65, 0xc6, 0xb5, 0x1a, 0xc1, 0xa7, 0x4c, 0x6d, 0x22 +.byte 0x70, 0x21, 0x8a, 0x31, 0xf2, 0x97, 0x74, 0x89, 0x09, 0x12, 0x26, 0x1c, 0x9e, 0xca, 0xd9, 0x12 +.byte 0xa2, 0x95, 0x3c, 0xda, 0xe9, 0x67, 0xbf, 0x08, 0xa0, 0x64, 0xe3, 0xd6, 0x42, 0xb7, 0x45, 0xef +.byte 0x97, 0xf4, 0xf6, 0xf5, 0xd7, 0xb5, 0x4a, 0x15, 0x02, 0x58, 0x7d, 0x98, 0x58, 0x4b, 0x60, 0xbc +.byte 0xcd, 0xd7, 0x0d, 0x9a, 0x13, 0x33, 0x53, 0xd1, 0x61, 0xf9, 0x7a, 0xd5, 0xd7, 0x78, 0xb3, 0x9a +.byte 0x33, 0xf7, 0x00, 0x86, 0xce, 0x1d, 0x4d, 0x94, 0x38, 0xaf, 0xa8, 0xec, 0x78, 0x51, 0x70, 0x8a +.byte 0x5c, 0x10, 0x83, 0x51, 0x21, 0xf7, 0x11, 0x3d, 0x34, 0x86, 0x5e, 0xe5, 0x48, 0xcd, 0x97, 0x81 +.byte 0x82, 0x35, 0x4c, 0x19, 0xec, 0x65, 0xf6, 0x6b, 0xc5, 0x05, 0xa1, 0xee, 0x47, 0x13, 0xd6, 0xb3 +.byte 0x21, 0x27, 0x94, 0x10, 0x0a, 0xd9, 0x24, 0x3b, 0xba, 0xbe, 0x44, 0x13, 0x46, 0x30, 0x3f, 0x97 +.byte 0x3c, 0xd8, 0xd7, 0xd7, 0x6a, 0xee, 0x3b, 0x38, 0xe3, 0x2b, 0xd4, 0x97, 0x0e, 0xb9, 0x1b, 0xe7 +.byte 0x07, 0x49, 0x7f, 0x37, 0x2a, 0xf9, 0x77, 0x78, 0xcf, 0x54, 0xed, 0x5b, 0x46, 0x9d, 0xa3, 0x80 +.byte 0x0e, 0x91, 0x43, 0xc1, 0xd6, 0x5b, 0x5f, 0x14, 0xba, 0x9f, 0xa6, 0x8d, 0x24, 0x47, 0x40, 0x59 +.byte 0xbf, 0x72, 0x38, 0xb2, 0x36, 0x6c, 0x37, 0xff, 0x99, 0xd1, 0x5d, 0x0e, 0x59, 0x0a, 0xab, 0x69 +.byte 0xf7, 0xc0, 0xb2, 0x04, 0x45, 0x7a, 0x54, 0x00, 0xae, 0xbe, 0x53, 0xf6, 0xb5, 0xe7, 0xe1, 0xf8 +.byte 0x3c, 0xa3, 0x31, 0xd2, 0xa9, 0xfe, 0x21, 0x52, 0x64, 0xc5, 0xa6, 0x67, 0xf0, 0x75, 0x07, 0x06 +.byte 0x94, 0x14, 0x81, 0x55, 0xc6, 0x27, 0xe4, 0x01, 0x8f, 0x17, 0xc1, 0x6a, 0x71, 0xd7, 0xbe, 0x4b +.byte 0xfb, 0x94, 0x58, 0x7d, 0x7e, 0x11, 0x33, 0xb1, 0x42, 0xf7, 0x62, 0x6c, 0x18, 0xd6, 0xcf, 0x09 +.byte 0x68, 0x3e, 0x7f, 0x6c, 0xf6, 0x1e, 0x8f, 0x62, 0xad, 0xa5, 0x63, 0xdb, 0x09, 0xa7, 0x1f, 0x22 +.byte 0x42, 0x41, 0x1e, 0x6f, 0x99, 0x8a, 0x3e, 0xd7, 0xf9, 0x3f, 0x40, 0x7a, 0x79, 0xb0, 0xa5, 0x01 +.byte 0x92, 0xd2, 0x9d, 0x3d, 0x08, 0x15, 0xa5, 0x10, 0x01, 0x2d, 0xb3, 0x32, 0x76, 0xa8, 0x95, 0x0d +.byte 0xb3, 0x7a, 0x9a, 0xfb, 0x07, 0x10, 0x78, 0x11, 0x6f, 0xe1, 0x8f, 0xc7, 0xba, 0x0f, 0x25, 0x1a +.byte 0x74, 0x2a, 0xe5, 0x1c, 0x98, 0x41, 0x99, 0xdf, 0x21, 0x87, 0xe8, 0x95, 0x06, 0x6a, 0x0a, 0xb3 +.byte 0x6a, 0x47, 0x76, 0x65, 0xf6, 0x3a, 0xcf, 0x8f, 0x62, 0x17, 0x19, 0x7b, 0x0a, 0x28, 0xcd, 0x1a +.byte 0xd2, 0x83, 0x1e, 0x21, 0xc7, 0x2c, 0xbf, 0xbe, 0xff, 0x61, 0x68, 0xb7, 0x67, 0x1b, 0xbb, 0x78 +.byte 0x4d, 0x8d, 0xce, 0x67, 0xe5, 0xe4, 0xc1, 0x8e, 0xb7, 0x23, 0x66, 0xe2, 0x9d, 0x90, 0x75, 0x34 +.byte 0x98, 0xa9, 0x36, 0x2b, 0x8a, 0x9a, 0x94, 0xb9, 0x9d, 0xec, 0xcc, 0x8a, 0xb1, 0xf8, 0x25, 0x89 +.byte 0x5c, 0x5a, 0xb6, 0x2f, 0x8c, 0x1f, 0x6d, 0x79, 0x24, 0xa7, 0x52, 0x68, 0xc3, 0x84, 0x35, 0xe2 +.byte 0x66, 0x8d, 0x63, 0x0e, 0x25, 0x4d, 0xd5, 0x19, 0xb2, 0xe6, 0x79, 0x37, 0xa7, 0x22, 0x9d, 0x54 +.byte 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x61, 0x00, 0x78, 0x00, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69, 0x6d, 0x69 +.byte 0x74, 0x65, 0x64, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x53, 0x65 +.byte 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x72 +.byte 0x76, 0x65, 0x72, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30, 0x10, 0x06 +.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 +.byte 0x62, 0x00, 0x04, 0x76, 0xfa, 0x99, 0xa9, 0x6e, 0x20, 0xed, 0xf9, 0xd7, 0x77, 0xe3, 0x07, 0x3b +.byte 0xa8, 0xdb, 0x3d, 0x5f, 0x38, 0xe8, 0xab, 0x55, 0xa6, 0x56, 0x4f, 0xd6, 0x48, 0xea, 0xec, 0x7f +.byte 0x2d, 0xaa, 0xc3, 0xb2, 0xc5, 0x79, 0xec, 0x99, 0x61, 0x7f, 0x10, 0x79, 0xc7, 0x02, 0x5a, 0xf9 +.byte 0x04, 0x37, 0xf5, 0x34, 0x35, 0x2b, 0x77, 0xce, 0x7f, 0x20, 0x8f, 0x52, 0xa3, 0x00, 0x89, 0xec +.byte 0xd5, 0xa7, 0xa2, 0x6d, 0x5b, 0xe3, 0x4b, 0x92, 0x93, 0xa0, 0x80, 0xf5, 0x01, 0x94, 0xdc, 0xf0 +.byte 0x68, 0x07, 0x1e, 0xcd, 0xee, 0xfe, 0x25, 0x52, 0xb5, 0x20, 0x43, 0x1c, 0x1b, 0xfe, 0xeb, 0x19 +.byte 0xce, 0x43, 0xa3, 0x61, 0x00, 0x26, 0x02, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64 +.byte 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x53, 0x65, 0x63, 0x74, 0x69 +.byte 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72 +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x93, 0xbe, 0xd5, 0x36, 0x52, 0x75, 0xd8 +.byte 0x01, 0x23, 0xa0, 0x1c, 0x47, 0x42, 0x49, 0xee, 0x63, 0xb6, 0xb7, 0x21, 0xfd, 0xc4, 0x95, 0xd5 +.byte 0x48, 0x2b, 0x26, 0x7c, 0x14, 0x53, 0x10, 0xda, 0x79, 0xfd, 0x2b, 0xb7, 0x2d, 0xa4, 0xd4, 0x2c +.byte 0xfa, 0xea, 0x32, 0xdd, 0x49, 0xc2, 0xb9, 0xbd, 0x0f, 0x48, 0x3d, 0x7b, 0x5a, 0x98, 0x54, 0xaf +.byte 0x9e, 0x5d, 0x31, 0x74, 0x4f, 0x07, 0xfc, 0x50, 0x21, 0xdd, 0xa4, 0xcf, 0x68, 0x4f, 0x1b, 0x12 +.byte 0x63, 0x6d, 0x25, 0x99, 0x4c, 0x2a, 0x99, 0xf3, 0x48, 0x30, 0x61, 0xfa, 0x81, 0x7c, 0x1e, 0xa7 +.byte 0x08, 0x4a, 0xdc, 0x3e, 0x2b, 0x1c, 0x1f, 0x18, 0x4c, 0x71, 0xaa, 0x35, 0x8c, 0xad, 0xf8, 0x6e +.byte 0xe8, 0x3b, 0x4a, 0xd9, 0xe5, 0x94, 0x02, 0xd6, 0x89, 0x84, 0x13, 0xaa, 0x6d, 0xc8, 0x4f, 0x33 +.byte 0xcc, 0x50, 0x96, 0x37, 0x92, 0x33, 0xdc, 0x5f, 0x88, 0xe7, 0x9f, 0x54, 0xd9, 0x48, 0xf0, 0x98 +.byte 0x43, 0xd6, 0x66, 0xfd, 0x9f, 0x17, 0x38, 0x43, 0xc5, 0x01, 0x51, 0x0b, 0xd7, 0xe3, 0x23, 0x0f +.byte 0x14, 0x5d, 0x5b, 0x14, 0xe7, 0x4b, 0xbe, 0xdd, 0xf4, 0xc8, 0xda, 0x03, 0x37, 0xd1, 0xd6, 0x39 +.byte 0xa1, 0x21, 0x51, 0x30, 0x83, 0xb0, 0x6d, 0xd7, 0x30, 0x4e, 0x96, 0x5b, 0x91, 0xf0, 0x70, 0x24 +.byte 0xab, 0xbf, 0x45, 0x81, 0x64, 0x43, 0x0d, 0xbd, 0x21, 0x3a, 0x2f, 0x3c, 0xe9, 0x9e, 0x0d, 0xcb +.byte 0x20, 0xb5, 0x42, 0x27, 0xcc, 0xda, 0x6f, 0x9b, 0xee, 0x64, 0x30, 0x90, 0x39, 0xcd, 0x93, 0x65 +.byte 0x81, 0x21, 0x31, 0xb5, 0x23, 0x50, 0x33, 0x37, 0x22, 0xe3, 0x38, 0xed, 0xf8, 0x31, 0x30, 0xcc +.byte 0x45, 0xfe, 0x62, 0xf9, 0xd1, 0x5d, 0x32, 0x79, 0x42, 0x87, 0xdf, 0x6a, 0xcc, 0x56, 0x19, 0x40 +.byte 0x4d, 0xce, 0xaa, 0xbb, 0xf9, 0xb5, 0x76, 0x49, 0x94, 0xf1, 0x27, 0xf8, 0x91, 0xa5, 0x83, 0xe5 +.byte 0x06, 0xb3, 0x63, 0x0e, 0x80, 0xdc, 0xe0, 0x12, 0x55, 0x80, 0xa6, 0x3b, 0x66, 0xb4, 0x39, 0x87 +.byte 0x2d, 0xc8, 0xf0, 0xd0, 0xd1, 0x14, 0xe9, 0xe4, 0x0d, 0x4d, 0x0e, 0xf6, 0x5d, 0x57, 0x72, 0xc5 +.byte 0x3b, 0x1c, 0x47, 0x56, 0x9d, 0xe2, 0xd5, 0xfb, 0x81, 0x61, 0x8c, 0xcc, 0x4d, 0x80, 0x90, 0x34 +.byte 0x5b, 0xb7, 0xd7, 0x14, 0x75, 0xdc, 0xd8, 0x04, 0x48, 0x9f, 0xc0, 0xc1, 0x28, 0x88, 0xb4, 0xe9 +.byte 0x1c, 0xca, 0xa7, 0xb1, 0xf1, 0x56, 0xb7, 0x7b, 0x49, 0x4c, 0x59, 0xe5, 0x20, 0x15, 0xa8, 0x84 +.byte 0x02, 0x29, 0xfa, 0x38, 0x94, 0x69, 0x9a, 0x49, 0x06, 0x8f, 0xcd, 0x1f, 0x79, 0x14, 0x17, 0x12 +.byte 0x0c, 0x83, 0x7a, 0xde, 0x1f, 0xb1, 0x97, 0xee, 0xf9, 0x97, 0x78, 0x28, 0xa4, 0xc8, 0x44, 0x92 +.byte 0xe9, 0x7d, 0x26, 0x05, 0xa6, 0x58, 0x72, 0x9b, 0x79, 0x13, 0xd8, 0x11, 0x5f, 0xae, 0xc5, 0x38 +.byte 0x62, 0x34, 0x68, 0xb2, 0x86, 0x30, 0x8e, 0xf8, 0x90, 0x61, 0x9e, 0x32, 0x6c, 0xf5, 0x07, 0x36 +.byte 0xcd, 0xa2, 0x4c, 0x6e, 0xec, 0x8a, 0x36, 0xed, 0xf2, 0xe6, 0x99, 0x15, 0x44, 0x70, 0xc3, 0x7c +.byte 0xbc, 0x9c, 0x39, 0xc0, 0xb4, 0xe1, 0x6b, 0xf7, 0x83, 0x25, 0x23, 0x57, 0xd9, 0x12, 0x80, 0xe5 +.byte 0x49, 0xf0, 0x75, 0x0f, 0xef, 0x8d, 0xeb, 0x1c, 0x9b, 0x54, 0x28, 0xb4, 0x21, 0x3c, 0xfc, 0x7c +.byte 0x0a, 0xff, 0xef, 0x7b, 0x6b, 0x75, 0xff, 0x8b, 0x1d, 0xa0, 0x19, 0x05, 0xab, 0xfa, 0xf8, 0x2b +.byte 0x81, 0x42, 0xe8, 0x38, 0xba, 0xbb, 0xfb, 0xaa, 0xfd, 0x3d, 0xe0, 0xf3, 0xca, 0xdf, 0x4e, 0x97 +.byte 0x97, 0x29, 0xed, 0xf3, 0x18, 0x56, 0xe9, 0xa5, 0x96, 0xac, 0xbd, 0xc3, 0x90, 0x98, 0xb2, 0xe0 +.byte 0xf9, 0xa2, 0xd4, 0xa6, 0x47, 0x43, 0x7c, 0x6d, 0xcf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x61, 0x00 +.byte 0x26, 0x01, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54 +.byte 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x54, 0x41, 0x49, 0x57 +.byte 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xb0, 0x7e, 0x72, 0xb8, 0xa4, 0x03, 0x94, 0xe6, 0xa7, 0xde, 0x09, 0x38 +.byte 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59, 0x64, 0x14, 0x7b, 0xb5, 0x11, 0x10, 0xdd, 0xfe +.byte 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25, 0xf4, 0x35, 0x72, 0x0f, 0xf8, 0x53, 0xd0, 0x41 +.byte 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31, 0x42, 0x16, 0x47, 0x85, 0x33, 0x22, 0x76, 0xb2 +.byte 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85, 0x86, 0xbe, 0xbf, 0x98, 0x2e, 0x10, 0x67, 0x1e +.byte 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59, 0xd0, 0x7c, 0x78, 0x10, 0xb0, 0x80, 0x5c, 0xb7 +.byte 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae, 0xb5, 0xd1, 0x9d, 0x23, 0x37, 0x63, 0xa7, 0xdc +.byte 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1, 0x7b, 0xb8, 0x3e, 0x1b, 0xc9, 0x56, 0x04, 0x8b +.byte 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1, 0xff, 0xad, 0xa9, 0x58, 0x87, 0x30, 0xb6, 0x81 +.byte 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b, 0x6f, 0xe4, 0x47, 0xf4, 0x99, 0x45, 0xfe, 0x1d +.byte 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c, 0x5c, 0x8f, 0xe0, 0x76, 0x25, 0x9a, 0x50, 0xf8 +.byte 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2, 0x32, 0xc6, 0xc3, 0xab, 0x06, 0xbf, 0xfc, 0xfb +.byte 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b, 0x29, 0xd3, 0x35, 0xa3, 0x93, 0x9a, 0x43, 0x64 +.byte 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04, 0xaf, 0x4d, 0x40, 0x6a, 0xf9, 0xc7, 0xe3, 0xef +.byte 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38, 0x0d, 0xee, 0x0a, 0xfc, 0xfe, 0x0f, 0x98, 0x9f +.byte 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b, 0x81, 0xbe, 0x22, 0xe1, 0x1c, 0x58, 0x03, 0xba +.byte 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x78, 0x00, 0x30, 0x61, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c +.byte 0x54, 0x44, 0x2e, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x53, 0x65 +.byte 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xa4, 0xa5, 0x6f, 0x60, 0x03, 0x03, 0xc3, 0xbd +.byte 0x31, 0xf4, 0xd3, 0x17, 0x9c, 0x2b, 0x84, 0x75, 0xac, 0xe5, 0xfd, 0x3d, 0x57, 0x6e, 0xd7, 0x63 +.byte 0xbf, 0xe6, 0x04, 0x89, 0x92, 0x8e, 0x81, 0x9c, 0xe3, 0xe9, 0x47, 0x6e, 0xca, 0x90, 0x12, 0xc8 +.byte 0x13, 0xe0, 0xa7, 0x9d, 0xf7, 0x65, 0x74, 0x1f, 0x6c, 0x10, 0xb2, 0xe8, 0xe4, 0xe9, 0xef, 0x6d +.byte 0x85, 0x32, 0x99, 0x44, 0xb1, 0x5e, 0xfd, 0xcc, 0x76, 0x10, 0xd8, 0x5b, 0xbd, 0xa2, 0xc6, 0xf9 +.byte 0xd6, 0x42, 0xe4, 0x57, 0x76, 0xdc, 0x90, 0xc2, 0x35, 0xa9, 0x4b, 0x88, 0x3c, 0x12, 0x47, 0x6d +.byte 0x5c, 0xff, 0x49, 0x4f, 0x1a, 0x4a, 0x50, 0xb1, 0x63, 0x00, 0x26, 0x02, 0x30, 0x61, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x4e, 0x31, 0x37, 0x30, 0x35, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x4e, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x65, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x6f, 0x6e +.byte 0x69, 0x71, 0x75, 0x65, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x54 +.byte 0x75, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xc3, 0xcd, 0xd3, 0xfc, 0xbd, 0x04, 0x53, 0xdd, 0x0c, 0x20, 0x3a, 0xd5, 0x88, 0x2e, 0x05, 0x4b +.byte 0x41, 0xf5, 0x83, 0x82, 0x7e, 0xf7, 0x59, 0x9f, 0x9e, 0x9e, 0x63, 0xe8, 0x73, 0xda, 0xf6, 0x06 +.byte 0xa9, 0x4f, 0x1f, 0xb4, 0xf9, 0x0b, 0x1f, 0x39, 0x8c, 0x9a, 0x20, 0xd0, 0x7e, 0x06, 0xd4, 0xec +.byte 0x34, 0xd9, 0x86, 0xbc, 0x75, 0x5b, 0x87, 0x88, 0xf0, 0xd2, 0xd9, 0xd4, 0xa3, 0x0a, 0xb2, 0x6c +.byte 0x1b, 0xeb, 0x49, 0x2c, 0x3e, 0xac, 0x5d, 0xd8, 0x94, 0x03, 0xa0, 0xec, 0x34, 0xe5, 0x30, 0xc4 +.byte 0x35, 0x7d, 0xfb, 0x26, 0x4d, 0x1b, 0x6e, 0x30, 0x54, 0xd8, 0xf5, 0x80, 0x45, 0x9c, 0x39, 0xad +.byte 0x9c, 0xc9, 0x25, 0x04, 0x4d, 0x9a, 0x90, 0x3e, 0x4e, 0x40, 0x6e, 0x8a, 0x6b, 0xcd, 0x29, 0x67 +.byte 0xc6, 0xcc, 0x2d, 0xe0, 0x74, 0xe8, 0x05, 0x57, 0x0a, 0x48, 0x50, 0xfa, 0x7a, 0x43, 0xda, 0x7e +.byte 0xec, 0x5b, 0x9a, 0x0e, 0x62, 0x76, 0xfe, 0xea, 0x9d, 0x1d, 0x85, 0x72, 0xec, 0x11, 0xbb, 0x35 +.byte 0xe8, 0x1f, 0x27, 0xbf, 0xc1, 0xa1, 0xc7, 0xbb, 0x48, 0x16, 0xdd, 0x56, 0xd7, 0xcc, 0x4e, 0xa0 +.byte 0xe1, 0xb9, 0xac, 0xdb, 0xd5, 0x83, 0x19, 0x1a, 0x85, 0xd1, 0x94, 0x97, 0xd7, 0xca, 0xa3, 0x65 +.byte 0x0b, 0xf3, 0x38, 0xf9, 0x02, 0xae, 0xdd, 0xf6, 0x67, 0xcf, 0xc9, 0x3f, 0xf5, 0x8a, 0x2c, 0x47 +.byte 0x1a, 0x99, 0x6f, 0x05, 0x0d, 0xfd, 0xd0, 0x1d, 0x82, 0x31, 0xfc, 0x29, 0xcc, 0x00, 0x58, 0x97 +.byte 0x91, 0x4c, 0x80, 0x00, 0x1c, 0x33, 0x85, 0x96, 0x2f, 0xcb, 0x41, 0xc2, 0x8b, 0x10, 0x84, 0xc3 +.byte 0x09, 0x24, 0x89, 0x1f, 0xb5, 0x0f, 0xd9, 0xd9, 0x77, 0x47, 0x18, 0x92, 0x94, 0x60, 0x5c, 0xc7 +.byte 0x99, 0x03, 0x3c, 0xfe, 0xf7, 0x95, 0xa7, 0x7d, 0x50, 0xa1, 0x80, 0xc2, 0xa9, 0x83, 0xad, 0x58 +.byte 0x96, 0x55, 0x21, 0xdb, 0x86, 0x59, 0xd4, 0xaf, 0xc6, 0xbc, 0xdd, 0x81, 0x6e, 0x07, 0xdb, 0x60 +.byte 0x62, 0xfe, 0xec, 0x10, 0x6e, 0xda, 0x68, 0x01, 0xf4, 0x83, 0x1b, 0xa9, 0x3e, 0xa2, 0x5b, 0x23 +.byte 0xd7, 0x64, 0xc6, 0xdf, 0xdc, 0xa2, 0x7d, 0xd8, 0x4b, 0xba, 0x82, 0xd2, 0x51, 0xf8, 0x66, 0xbf +.byte 0x06, 0x46, 0xe4, 0x79, 0x2a, 0x26, 0x36, 0x79, 0x8f, 0x1f, 0x4e, 0x99, 0x1d, 0xb2, 0x8f, 0x0c +.byte 0x0e, 0x1c, 0xff, 0xc9, 0x5d, 0xc0, 0xfd, 0x90, 0x10, 0xa6, 0xb1, 0x37, 0xf3, 0xcd, 0x3a, 0x24 +.byte 0x6e, 0xb4, 0x85, 0x90, 0xbf, 0x80, 0xb9, 0x0c, 0x8c, 0xd5, 0x9b, 0xd6, 0xc8, 0xf1, 0x56, 0x3f +.byte 0x1a, 0x80, 0x89, 0x7a, 0xa9, 0xe2, 0x1b, 0x32, 0x51, 0x2c, 0x3e, 0xf2, 0xdf, 0x7b, 0xf6, 0x5d +.byte 0x7a, 0x29, 0x19, 0x8e, 0xe5, 0xc8, 0xbd, 0x36, 0x71, 0x8b, 0x5d, 0x4c, 0xc2, 0x1d, 0x3f, 0xad +.byte 0x58, 0xa2, 0xcf, 0x3d, 0x70, 0x4d, 0xa6, 0x50, 0x98, 0x25, 0xdc, 0x23, 0xf9, 0xb8, 0x58, 0x41 +.byte 0x08, 0x71, 0xbf, 0x4f, 0xb8, 0x84, 0xa0, 0x8f, 0x00, 0x54, 0x15, 0xfc, 0x91, 0x6d, 0x58, 0xa7 +.byte 0x96, 0x3b, 0xeb, 0x4b, 0x96, 0x27, 0xcd, 0x6b, 0xa2, 0xa1, 0x86, 0xac, 0x0d, 0x7c, 0x54, 0xe6 +.byte 0x66, 0x4c, 0x66, 0x5f, 0x90, 0xbe, 0x21, 0x9a, 0x02, 0x46, 0x2d, 0xe4, 0x83, 0xc2, 0x80, 0xb9 +.byte 0xcf, 0x4b, 0x3e, 0xe8, 0x7f, 0x3c, 0x01, 0xec, 0x8f, 0x5e, 0xcd, 0x7f, 0xd2, 0x28, 0x42, 0x01 +.byte 0x95, 0x8a, 0xe2, 0x97, 0x3d, 0x10, 0x21, 0x7d, 0xf6, 0x9d, 0x1c, 0xc5, 0x34, 0xa1, 0xec, 0x2c +.byte 0x0e, 0x0a, 0x52, 0x2c, 0x12, 0x55, 0x70, 0x24, 0x3d, 0xcb, 0xc2, 0x14, 0x35, 0x43, 0x5d, 0x27 +.byte 0x4e, 0xbe, 0xc0, 0xbd, 0xaa, 0x7c, 0x96, 0xe7, 0xfc, 0x9e, 0x61, 0xad, 0x44, 0xd3, 0x00, 0x97 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69 +.byte 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe2, 0x3b, 0xe1 +.byte 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57, 0xaa, 0x50, 0xa2, 0x8f, 0x0b, 0x77, 0x90, 0xc9 +.byte 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01, 0x09, 0x20, 0xcc, 0x01, 0x93, 0xa7, 0x4e, 0x30 +.byte 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57, 0x9d, 0xe2, 0x8d, 0x22, 0xdd, 0x87, 0x06, 0x40 +.byte 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf, 0xdf, 0xcd, 0x3b, 0x71, 0x46, 0xe2, 0xd6, 0x66 +.byte 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b, 0x9e, 0x1e, 0x95, 0x7d, 0xee, 0xb7, 0x48, 0xa3 +.byte 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06, 0x65, 0x7f, 0x4a, 0x5d, 0x1f, 0xbc, 0x17, 0xf8 +.byte 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a, 0x78, 0x99, 0x59, 0x85, 0x68, 0x6e, 0x5c, 0x23 +.byte 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d, 0xe3, 0x70, 0xbf, 0x77, 0x10, 0xbf, 0xfc, 0x01 +.byte 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32, 0xa9, 0x75, 0x18, 0xd5, 0xd1, 0xa2, 0xbe, 0x47 +.byte 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49, 0x08, 0x60, 0x8b, 0xd4, 0x5f, 0xb4, 0x3a, 0x84 +.byte 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf, 0x4f, 0x5f, 0x6c, 0x76, 0x5e, 0xa0, 0x4b, 0x37 +.byte 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14, 0x1a, 0x8e, 0x6a, 0xcb, 0xfe, 0xcd, 0xb3, 0x14 +.byte 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf, 0xf2, 0xee, 0xfa, 0xd3, 0x0b, 0x42, 0xd4, 0xab +.byte 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8, 0x81, 0xd5, 0xbb, 0x8d, 0x58, 0x3f, 0xb5, 0x1b +.byte 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04, 0xdd, 0xf7, 0xb2, 0x16, 0xf2, 0x4c, 0x0a, 0x4e +.byte 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f, 0xa3, 0x90, 0xc3, 0xaf, 0x27, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c +.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63 +.byte 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbb, 0x37, 0xcd, 0x34, 0xdc, 0x7b +.byte 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75, 0xff, 0x46, 0xba, 0x21, 0x0a, 0x08, 0x8d, 0xf5 +.byte 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae, 0xf2, 0x3a, 0x89, 0x91, 0x3c, 0x7a, 0xe6, 0xab +.byte 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e, 0x09, 0x24, 0x44, 0xba, 0x62, 0x9a, 0x7e, 0xd6 +.byte 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05, 0xac, 0x50, 0xb7, 0x9c, 0x63, 0x1a, 0x6c, 0x30 +.byte 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde, 0xfd, 0xd7, 0xe0, 0xcb, 0x94, 0x83, 0x37, 0xae +.byte 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2, 0xbd, 0x2e, 0xa5, 0x2f, 0xe4, 0xa9, 0xb8, 0xad +.byte 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b, 0x6b, 0x00, 0x60, 0x92, 0x60, 0xff, 0x4f, 0x21 +.byte 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06, 0x9c, 0x8f, 0xf2, 0xba, 0xe9, 0xb4, 0xe9, 0x92 +.byte 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b, 0xcd, 0x8c, 0x1d, 0xab, 0x95, 0x04, 0x95, 0x49 +.byte 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd, 0x77, 0xe3, 0xfb, 0x49, 0x4b, 0xb4, 0xac, 0x55 +.byte 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb, 0x4c, 0x6d, 0x45, 0xf0, 0xf6, 0xa9, 0xb2, 0x95 +.byte 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a, 0x57, 0x14, 0x7c, 0x82, 0x9d, 0xcd, 0x73, 0x92 +.byte 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1, 0x8f, 0x1e, 0x09, 0xbe, 0x17, 0xa1, 0xe6, 0x21 +.byte 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5, 0x0a, 0xc4, 0x67, 0x28, 0xf6, 0x73, 0x14, 0x14 +.byte 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21, 0x34, 0x4d, 0xaf, 0x0f, 0x45, 0x0c, 0xa6, 0x49 +.byte 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83, 0x29, 0x85, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63 +.byte 0x00, 0x78, 0x00, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67 +.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74 +.byte 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44 +.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xdd, 0xa7 +.byte 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f, 0x21, 0xd2, 0xf0, 0xbe, 0xbe, 0x73, 0xf3, 0x33 +.byte 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b, 0xbc, 0xd0, 0x95, 0xf6, 0xf0, 0xcc, 0xd0, 0x0b +.byte 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d, 0x9f, 0xee, 0x8e, 0x63, 0x0c, 0x17, 0xec, 0x07 +.byte 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c, 0xe8, 0x3f, 0x41, 0x6d, 0x3b, 0xad, 0xd3, 0xa4 +.byte 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee, 0x10, 0x13, 0x6c, 0x72, 0xde, 0xae, 0x88, 0xa7 +.byte 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23, 0xff, 0x03, 0x1c, 0xa3, 0xe2, 0x3e, 0x64, 0x00 +.byte 0x26, 0x02, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43 +.byte 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x29, 0x47, 0x55, 0x41, 0x4e +.byte 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41 +.byte 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x20, 0x43, 0x4f, 0x2e +.byte 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16 +.byte 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x55, 0x54, 0x48, 0x20, 0x52 +.byte 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd9, 0xa3, 0x16, 0xf0, 0xc8, 0x74, 0x74, 0x77, 0x9b +.byte 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc, 0xb5, 0x60, 0x8f, 0x76, 0x86, 0x12, 0x42, 0x7d +.byte 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63, 0x0e, 0x9e, 0x8b, 0xdd, 0x34, 0x2c, 0x02, 0x51 +.byte 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9, 0xf1, 0x6b, 0xb3, 0x4c, 0xb0, 0xe9, 0xe8, 0x46 +.byte 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57, 0xba, 0x82, 0x15, 0xa2, 0x9c, 0x8f, 0x6d, 0xb0 +.byte 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63, 0x4e, 0x79, 0xc4, 0xb7, 0x5b, 0xbd, 0xa2, 0x5d +.byte 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a, 0xa3, 0xec, 0x79, 0x0a, 0xec, 0x5f, 0x3a, 0xe3 +.byte 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a, 0xab, 0x88, 0x26, 0x7b, 0x56, 0xa2, 0x82, 0x86 +.byte 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae, 0x29, 0x4e, 0x3d, 0xb6, 0x6e, 0xec, 0xae, 0xc1 +.byte 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef, 0xae, 0x7f, 0xf7, 0x86, 0x3d, 0x72, 0x7a, 0xeb +.byte 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c, 0x22, 0x39, 0x79, 0xe1, 0x2d, 0x08, 0x8f, 0xcc +.byte 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23, 0xa9, 0xc3, 0xad, 0x9a, 0x45, 0x44, 0xb3, 0xb2 +.byte 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10, 0xae, 0x5c, 0xcb, 0x82, 0x8e, 0x17, 0x18, 0x36 +.byte 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34, 0x09, 0xf4, 0x2c, 0xb9, 0x5a, 0x66, 0x2a, 0xb0 +.byte 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66, 0x31, 0x41, 0xdf, 0x3f, 0xfb, 0xc5, 0x06, 0xef +.byte 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64, 0x63, 0x3b, 0xe3, 0x39, 0x18, 0x23, 0xe7, 0x67 +.byte 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd, 0xbe, 0x6a, 0x1b, 0x26, 0x50, 0xf2, 0x36, 0x26 +.byte 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76, 0x66, 0xe1, 0x91, 0xdb, 0x6e, 0x07, 0xc0, 0x61 +.byte 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7, 0xd1, 0x3b, 0x3c, 0xb3, 0x91, 0xe4, 0x6e, 0xb6 +.byte 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09, 0xcd, 0x47, 0x7d, 0x18, 0xc0, 0xf3, 0xbb, 0x9e +.byte 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f, 0xce, 0x0b, 0x0c, 0x47, 0xa7, 0xe5, 0x3e, 0xb8 +.byte 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97, 0x3a, 0x41, 0x75, 0x17, 0xcc, 0x2b, 0x96, 0x77 +.byte 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20, 0x67, 0x68, 0xcf, 0x0d, 0xbd, 0xdf, 0xd6, 0x1f +.byte 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4, 0x2f, 0x7d, 0x12, 0x80, 0xb7, 0x53, 0x30, 0x46 +.byte 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5, 0xc8, 0xf2, 0x20, 0xc1, 0x82, 0xec, 0x9d, 0x11 +.byte 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed, 0x20, 0x9a, 0xef, 0x65, 0x64, 0x92, 0x10, 0x0d +.byte 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82, 0x8c, 0x61, 0xde, 0xb8, 0xbc, 0xd1, 0x2f, 0x9c +.byte 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9, 0xe4, 0x39, 0x55, 0xf8, 0xf8, 0xa1, 0x1d, 0xb8 +.byte 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f, 0x09, 0xb8, 0xbc, 0x30, 0xa0, 0x2f, 0x0d, 0xf5 +.byte 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00, 0x1d, 0x00, 0x54, 0x97, 0x06, 0xe0, 0xb1, 0x07 +.byte 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d, 0x59, 0x57, 0xe4, 0xed, 0xa5, 0x8d, 0xe9, 0x40 +.byte 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a, 0x21, 0xe3, 0xda, 0x70, 0x06, 0x21, 0x58, 0x14 +.byte 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02, 0x03, 0x01, 0x00, 0x01, 0x64, 0x00, 0x26, 0x02 +.byte 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f +.byte 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x47, 0x34, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xbf, 0xe6, 0x90, 0x73, 0x68, 0xde, 0xbb, 0xe4, 0x5d, 0x4a, 0x3c +.byte 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7, 0x25, 0x2e, 0xc9, 0x21, 0x3d, 0xf2, 0x8a, 0xd8 +.byte 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab, 0x76, 0x9a, 0xcd, 0xae, 0x7b, 0x1b, 0x84, 0x0d +.byte 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16, 0xeb, 0x56, 0xc6, 0x97, 0x6d, 0x1d, 0xab, 0xb2 +.byte 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6, 0x05, 0x3c, 0x52, 0x0f, 0x52, 0x1f, 0xc6, 0x9e +.byte 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16, 0x59, 0x55, 0x72, 0xaf, 0x68, 0x93, 0x70, 0xc2 +.byte 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94, 0xd1, 0x10, 0x44, 0x10, 0x2e, 0xdf, 0x82, 0xf3 +.byte 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2, 0x2d, 0x0c, 0x1b, 0xee, 0x20, 0xd5, 0xc9, 0x20 +.byte 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e, 0xc8, 0x93, 0xf8, 0x21, 0x61, 0x9b, 0x34, 0xeb +.byte 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb, 0xc9, 0xcf, 0xcd, 0xac, 0x34, 0x40, 0x5f, 0xb1 +.byte 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66, 0x57, 0x57, 0x9f, 0x54, 0x58, 0x8e, 0x0c, 0x2b +.byte 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca, 0x7b, 0x5d, 0xe3, 0xad, 0xc9, 0x4f, 0x5e, 0xe5 +.byte 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc, 0x8e, 0x8f, 0x80, 0xda, 0xb6, 0x91, 0x98, 0x40 +.byte 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4, 0xb5, 0x6a, 0x18, 0x38, 0x03, 0x10, 0x8d, 0xd8 +.byte 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5, 0x82, 0x3e, 0x10, 0x91, 0x70, 0xab, 0x55, 0x82 +.byte 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e, 0x91, 0x01, 0x7c, 0x21, 0x4c, 0xd4, 0xbc, 0xae +.byte 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a, 0x31, 0x44, 0x9a, 0x33, 0x40, 0xbf, 0x08, 0xd7 +.byte 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67, 0xdd, 0xa4, 0x27, 0xbc, 0xa1, 0x4f, 0x39, 0xb5 +.byte 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f, 0x64, 0xf7, 0xc1, 0x69, 0x88, 0x76, 0x98, 0x76 +.byte 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97, 0x69, 0x7a, 0x48, 0xf0, 0xe0, 0xa2, 0x12, 0x1b +.byte 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7, 0x0e, 0x63, 0xae, 0xe6, 0xd4, 0xef, 0x92, 0x92 +.byte 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25, 0x89, 0xb6, 0x9a, 0x44, 0x19, 0x2b, 0x7e, 0xc0 +.byte 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9, 0xc5, 0xdf, 0x4b, 0x04, 0x00, 0xcc, 0x7d, 0x1c +.byte 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11, 0xb7, 0xbb, 0x7f, 0xf2, 0xd5, 0x8c, 0x70, 0x2c +.byte 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95, 0x1a, 0x76, 0x62, 0x7e, 0xf6, 0x80, 0xb0, 0xfb +.byte 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1, 0xbd, 0xb7, 0xe6, 0x43, 0xa4, 0x18, 0xb8, 0xa6 +.byte 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d, 0xb2, 0x54, 0x29, 0x25, 0x89, 0x6c, 0xe5, 0x0e +.byte 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6, 0x41, 0x75, 0xde, 0x7a, 0xac, 0x5f, 0x8d, 0x3f +.byte 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5, 0x10, 0x50, 0xeb, 0x31, 0xc5, 0xca, 0x72, 0x16 +.byte 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63, 0xec, 0x21, 0x5f, 0xc4, 0x20, 0x51, 0x6b, 0x6f +.byte 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45, 0x5f, 0x9d, 0x20, 0xfc, 0xa1, 0x1e, 0xc5, 0xc0 +.byte 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5, 0xe4, 0x69, 0x2f, 0x98, 0x1d, 0x2d, 0xf5, 0xd9 +.byte 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x78, 0x00, 0x30, 0x63 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73, 0x63, 0x68, 0x65 +.byte 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74 +.byte 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74 +.byte 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x32 +.byte 0x30, 0x32, 0x30, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01 +.byte 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xce, 0xbf, 0xfe, 0x57, 0xa8 +.byte 0xbf, 0xd5, 0xaa, 0xf7, 0x10, 0x9a, 0xcd, 0xbc, 0xd1, 0x11, 0xa2, 0xbd, 0x67, 0x42, 0xcc, 0x90 +.byte 0xeb, 0x15, 0x18, 0x90, 0xd9, 0xa2, 0xcd, 0x0c, 0x2a, 0x25, 0xeb, 0x3e, 0x4f, 0xce, 0xb5, 0xd2 +.byte 0x8f, 0x0f, 0xf3, 0x35, 0xda, 0x43, 0x8b, 0x02, 0x80, 0xbe, 0x6f, 0x51, 0x24, 0x1d, 0x0f, 0x6b +.byte 0x2b, 0xca, 0x9f, 0xc2, 0x6f, 0x50, 0x32, 0xe5, 0x37, 0x20, 0xb6, 0x20, 0xff, 0x88, 0x0d, 0x0f +.byte 0x6d, 0x49, 0xbb, 0xdb, 0x06, 0xa4, 0x87, 0x90, 0x92, 0x94, 0xf4, 0x09, 0xd0, 0xcf, 0x7f, 0xc8 +.byte 0x80, 0x0b, 0xc1, 0x97, 0xb3, 0xbb, 0x35, 0x27, 0xc9, 0xc2, 0x1b, 0x65, 0x00, 0x26, 0x02, 0x30 +.byte 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x27 +.byte 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73, 0x63, 0x68 +.byte 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x32, 0x30, 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xed, 0x35, 0xa1, 0x81, 0x80, 0xf3, 0xcb, 0x4a, 0x69, 0x5b, 0xc2 +.byte 0xfb, 0x51, 0x83, 0xae, 0x26, 0xfd, 0xe1, 0x6e, 0xf3, 0x81, 0x12, 0x7d, 0x71, 0x40, 0xff, 0x87 +.byte 0x75, 0x42, 0x29, 0x21, 0xed, 0x81, 0x52, 0x2c, 0xdf, 0x12, 0xc1, 0x19, 0x84, 0x89, 0xc1, 0xbd +.byte 0xc5, 0x28, 0xd5, 0xd5, 0x4b, 0x6c, 0x44, 0xd6, 0x4c, 0xdb, 0x07, 0x96, 0x4a, 0x55, 0x7a, 0xca +.byte 0x36, 0x82, 0x04, 0x36, 0xa8, 0xa5, 0xfc, 0x27, 0xf6, 0x49, 0xf1, 0xd5, 0x72, 0x9e, 0x91, 0xf9 +.byte 0x23, 0xd6, 0x70, 0x7b, 0xbb, 0xf5, 0x9b, 0xc1, 0xec, 0x93, 0xcf, 0x19, 0xea, 0x65, 0x7e, 0x88 +.byte 0x70, 0xa0, 0x73, 0xfc, 0xf6, 0xff, 0xb5, 0x56, 0x62, 0xe1, 0x73, 0x6a, 0x34, 0x98, 0x3e, 0x82 +.byte 0xb8, 0xac, 0x95, 0x53, 0xf4, 0x01, 0xa0, 0x27, 0x07, 0x72, 0xa3, 0x00, 0x53, 0xa0, 0xe4, 0xb2 +.byte 0xab, 0x83, 0x38, 0x57, 0x33, 0x25, 0x94, 0x9f, 0xbe, 0x48, 0x1d, 0x98, 0xe1, 0xa3, 0xba, 0x9e +.byte 0x5c, 0xcd, 0x04, 0x71, 0x51, 0x7d, 0x75, 0x78, 0xab, 0xf3, 0x59, 0xaa, 0xc4, 0xe0, 0x60, 0xbe +.byte 0x8f, 0x83, 0x52, 0xb8, 0x75, 0x1a, 0x41, 0x35, 0xed, 0xbc, 0xf3, 0x3a, 0x63, 0xe9, 0xa9, 0x14 +.byte 0x45, 0xd7, 0xe6, 0x52, 0xd1, 0x6e, 0xd2, 0xde, 0xbc, 0xe3, 0xf5, 0x0b, 0x3b, 0xe6, 0xe0, 0xc4 +.byte 0xbd, 0x43, 0x64, 0x13, 0xa6, 0xce, 0xf4, 0x98, 0x37, 0x6c, 0x8a, 0x95, 0xa8, 0x97, 0xc8, 0x47 +.byte 0x0f, 0xf0, 0x5e, 0x10, 0x8b, 0xe7, 0x1d, 0x1c, 0xfe, 0xb1, 0x3b, 0xa0, 0x05, 0x33, 0x68, 0x05 +.byte 0x41, 0x82, 0xc1, 0x03, 0x2b, 0x01, 0xc8, 0xe7, 0x8f, 0x4d, 0xab, 0xe8, 0xb5, 0xf6, 0xcd, 0x6b +.byte 0x44, 0xb5, 0xe7, 0xdd, 0x8b, 0xec, 0xea, 0x25, 0xb4, 0x00, 0x22, 0x57, 0x4d, 0xb0, 0xb1, 0xb2 +.byte 0x31, 0xc1, 0x16, 0xce, 0xff, 0xfd, 0x14, 0x84, 0xb7, 0x47, 0xfa, 0xb2, 0xf1, 0x70, 0xde, 0xdb +.byte 0x8b, 0x6c, 0x36, 0x58, 0xa4, 0x7c, 0xb3, 0x11, 0xd1, 0xc3, 0x77, 0x7f, 0x5f, 0xb6, 0x25, 0xe0 +.byte 0x0d, 0xc5, 0xd2, 0xb3, 0xf9, 0xb8, 0xb8, 0x77, 0xdb, 0x37, 0x71, 0x71, 0x47, 0xe3, 0x60, 0x18 +.byte 0x4f, 0x24, 0xb6, 0x75, 0x37, 0x78, 0xb9, 0xa3, 0x62, 0xaf, 0xbd, 0xc9, 0x72, 0x8e, 0x2f, 0xcc +.byte 0xbb, 0xae, 0xdb, 0xe4, 0x15, 0x52, 0x19, 0x07, 0x33, 0xfb, 0x6a, 0xb7, 0x2d, 0x4b, 0x90, 0x28 +.byte 0x82, 0x73, 0xfe, 0x18, 0x8b, 0x35, 0x8d, 0xdb, 0xa7, 0x04, 0x6a, 0xbe, 0xea, 0xc1, 0x4d, 0x36 +.byte 0x3b, 0x16, 0x36, 0x91, 0x32, 0xef, 0xb6, 0x40, 0x89, 0x91, 0x43, 0xe0, 0xf2, 0xa2, 0xab, 0x04 +.byte 0x2e, 0xe6, 0xf2, 0x4c, 0x0e, 0x16, 0x34, 0x20, 0xac, 0x87, 0xc1, 0x2d, 0x7e, 0xc9, 0x66, 0x47 +.byte 0x17, 0x14, 0x11, 0xa4, 0xf3, 0xf7, 0xa1, 0x24, 0x89, 0xab, 0xd8, 0x1a, 0xc8, 0xa1, 0x5c, 0xb1 +.byte 0xa3, 0xf7, 0x8c, 0x6d, 0xc8, 0x01, 0xc9, 0x4f, 0xc9, 0xec, 0xc4, 0xfc, 0xac, 0x51, 0x33, 0xd1 +.byte 0xc8, 0x83, 0xd1, 0xc9, 0x9f, 0x1d, 0xd4, 0x47, 0x34, 0x29, 0x3e, 0xcb, 0xb0, 0x0e, 0xfa, 0x83 +.byte 0x0b, 0x28, 0x58, 0xe5, 0x29, 0xdc, 0x3f, 0x7c, 0xa8, 0x9f, 0xc9, 0xb6, 0x0a, 0xbb, 0xa6, 0xe8 +.byte 0x46, 0x16, 0x0f, 0x96, 0xe5, 0x7b, 0xe4, 0x6a, 0x7a, 0x48, 0x6d, 0x76, 0x98, 0x05, 0xa5, 0xdc +.byte 0x6d, 0x1e, 0x42, 0x1e, 0x42, 0xda, 0x1a, 0xe0, 0x52, 0xf7, 0xb5, 0x83, 0xc0, 0x1a, 0x7b, 0x78 +.byte 0x35, 0x2c, 0x38, 0xf5, 0x1f, 0xfd, 0x49, 0xa3, 0x2e, 0xd2, 0x59, 0x63, 0xbf, 0x80, 0xb0, 0x8c +.byte 0x93, 0x73, 0xcb, 0x35, 0xa6, 0x99, 0x95, 0x22, 0x61, 0x65, 0x03, 0x60, 0xfb, 0x2f, 0x93, 0x4b +.byte 0xfa, 0x9a, 0x9c, 0x80, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x24, 0x01, 0x30, 0x63 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x21, 0x30 +.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x68, 0x65, 0x20, 0x47, 0x6f, 0x20, 0x44 +.byte 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e +.byte 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61 +.byte 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea, 0x57, 0x18, 0x49, 0xa1, 0x5b, 0xeb, 0xd7, 0x5f +.byte 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef, 0x67, 0x1c, 0xf4, 0x65, 0x68, 0xb3, 0x57, 0x71 +.byte 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9, 0x70, 0x80, 0x3d, 0x56, 0x18, 0x63, 0x08, 0x6f +.byte 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54, 0x22, 0x54, 0x10, 0xd8, 0xb2, 0x81, 0xd4, 0xc0 +.byte 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e, 0x78, 0xab, 0x1a, 0x03, 0xb5, 0x20, 0x6b, 0x2f +.byte 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb, 0x1e, 0xb0, 0xc1, 0xd8, 0x45, 0x27, 0x6f, 0xaa +.byte 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d, 0xf6, 0xa9, 0x17, 0xb7, 0x1f, 0x72, 0x36, 0x4e +.byte 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a, 0x6e, 0x5d, 0xa2, 0xfe, 0x88, 0xe0, 0x0b, 0xde +.byte 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a, 0xd5, 0xe2, 0x12, 0xa2, 0x13, 0x2d, 0xd8, 0x8e +.byte 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08, 0xb6, 0x5c, 0xa5, 0x65, 0x38, 0x04, 0x45, 0x99 +.byte 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5, 0x72, 0x62, 0x1b, 0x62, 0xc5, 0x1f, 0x6f, 0x5f +.byte 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae, 0x23, 0x18, 0x6a, 0xfc, 0x78, 0x03, 0xa9, 0x4d +.byte 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1, 0x40, 0xa4, 0xca, 0x19, 0x16, 0xfe, 0xb2, 0xc8 +.byte 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a, 0xf6, 0x79, 0x98, 0xbc, 0xb1, 0x07, 0x67, 0xa2 +.byte 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b, 0x0a, 0x3e, 0x62, 0x28, 0x5f, 0xba, 0x41, 0x07 +.byte 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5, 0xf8, 0xff, 0xb5, 0x69, 0x90, 0x8f, 0x84, 0x74 +.byte 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x67, 0x00, 0x26, 0x01, 0x30, 0x65, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e +.byte 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e +.byte 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 +.byte 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xad, 0x0e, 0x15, 0xce, 0xe4, 0x43, 0x80, 0x5c, 0xb1, 0x87, 0xf3, 0xb7, 0x60 +.byte 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94, 0x88, 0xaa, 0xf4, 0xce, 0xf5, 0x20, 0x39, 0x28 +.byte 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15, 0x95, 0x32, 0x61, 0x3c, 0xb5, 0xb1, 0x28, 0x84 +.byte 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17, 0x7a, 0x8f, 0x90, 0xac, 0x8a, 0xe7, 0x79, 0x53 +.byte 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32, 0x36, 0x76, 0xcc, 0xde, 0xdd, 0x3c, 0xa8, 0xa2 +.byte 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf, 0x9f, 0x20, 0xd7, 0x1f, 0xe2, 0xb1, 0xd9, 0xfe +.byte 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58, 0x18, 0x35, 0xbc, 0x47, 0xcd, 0xa1, 0x36, 0xf9 +.byte 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b, 0xc3, 0x8c, 0x33, 0xd9, 0xd8, 0x2f, 0x18, 0xfe +.byte 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e, 0x44, 0xc0, 0x61, 0x35, 0x96, 0x16, 0xfe, 0x59 +.byte 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b, 0x0d, 0x2b, 0xff, 0x0b, 0x72, 0xda, 0x9e, 0x60 +.byte 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87, 0x20, 0xa1, 0xcf, 0xe5, 0x6d, 0x0a, 0xc8, 0x49 +.byte 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87, 0xd0, 0x32, 0x5a, 0xa2, 0xba, 0x13, 0x82, 0x11 +.byte 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1, 0xe6, 0xfa, 0xa4, 0xd9, 0xd5, 0x17, 0x31, 0x75 +.byte 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46, 0x86, 0xf6, 0x28, 0x79, 0xc8, 0xb1, 0xda, 0xe4 +.byte 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4, 0x92, 0xa6, 0x56, 0xb3, 0xbd, 0xb2, 0x97, 0xed +.byte 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95, 0x16, 0xd0, 0xff, 0xa1, 0x96, 0xeb, 0x08, 0x5f +.byte 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x26, 0x01, 0x30, 0x65, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49 +.byte 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77 +.byte 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30 +.byte 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74 +.byte 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xd9, 0xe7, 0x28, 0x2f, 0x52, 0x3f, 0x36, 0x72, 0x49, 0x88, 0x93, 0x34 +.byte 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f, 0xad, 0x54, 0x41, 0xb5, 0x47, 0xdf, 0x96, 0xa8 +.byte 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75, 0xfd, 0x89, 0xa5, 0x7d, 0x24, 0xfa, 0xe3, 0x22 +.byte 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf, 0x19, 0x4d, 0x41, 0x06, 0x90, 0x00, 0xbd, 0x0c +.byte 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e, 0x22, 0x55, 0x31, 0x65, 0x97, 0xbd, 0xd3, 0x17 +.byte 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50, 0x8c, 0x3f, 0x84, 0x0c, 0x96, 0xcf, 0xb7, 0xcb +.byte 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b, 0x89, 0xdd, 0xed, 0x00, 0xb0, 0x52, 0x7c, 0xaf +.byte 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12, 0x08, 0xc0, 0x00, 0xb0, 0x1c, 0x2b, 0x11, 0xda +.byte 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87, 0xdc, 0x82, 0x70, 0xe6, 0x09, 0x74, 0x70, 0x55 +.byte 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6, 0x79, 0xb3, 0xf2, 0x9d, 0x70, 0x29, 0x55, 0xf4 +.byte 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f, 0x1d, 0xd1, 0xbe, 0x93, 0xbb, 0xd3, 0x88, 0x2a +.byte 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b, 0x3f, 0xd4, 0xf3, 0xd1, 0x0a, 0xfe, 0x28, 0xef +.byte 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f, 0x60, 0xb7, 0xf2, 0x92, 0xa1, 0xb1, 0xbd, 0x89 +.byte 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62, 0x33, 0xae, 0x16, 0x02, 0x77, 0x44, 0x5a, 0xe7 +.byte 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8, 0x3f, 0x04, 0xbc, 0x5c, 0xa0, 0x87, 0xe1, 0x1b +.byte 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8, 0xfe, 0x6d, 0xf0, 0x3a, 0x7c, 0xaa, 0x8b, 0xe4 +.byte 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x78, 0x00, 0x30, 0x65, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 +.byte 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77 +.byte 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24 +.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02 +.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x19, 0xe7, 0xbc, 0xac +.byte 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb, 0x8d, 0xb1, 0x57, 0xa9, 0x44, 0x2d, 0x05, 0x15 +.byte 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5, 0x62, 0x52, 0x5f, 0x66, 0x7e, 0x1f, 0xe5, 0xdc +.byte 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a, 0x9d, 0x8d, 0x5d, 0x02, 0xd9, 0xa9, 0x59, 0xde +.byte 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38, 0x4a, 0x8a, 0x49, 0xc6, 0xbc, 0xc6, 0x03, 0x38 +.byte 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2, 0x7f, 0x5e, 0xd0, 0x45, 0x20, 0x0f, 0x59, 0x76 +.byte 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36, 0xf2, 0x6c, 0x29, 0x39, 0x67, 0x00, 0x78, 0x00 +.byte 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 +.byte 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31 +.byte 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 +.byte 0x6f, 0x66, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd4 +.byte 0xbc, 0x3d, 0x02, 0x42, 0x75, 0x41, 0x13, 0x23, 0xcd, 0x80, 0x04, 0x86, 0x02, 0x51, 0x2f, 0x6a +.byte 0xa8, 0x81, 0x62, 0x0b, 0x65, 0xcc, 0xf6, 0xca, 0x9d, 0x1e, 0x6f, 0x4a, 0x66, 0x51, 0xa2, 0x03 +.byte 0xd9, 0x9d, 0x91, 0xfa, 0xb6, 0x16, 0xb1, 0x8c, 0x6e, 0xde, 0x7c, 0xcd, 0xdb, 0x79, 0xa6, 0x2f +.byte 0xce, 0xbb, 0xce, 0x71, 0x2f, 0xe5, 0xa5, 0xab, 0x28, 0xec, 0x63, 0x04, 0x66, 0x99, 0xf8, 0xfa +.byte 0xf2, 0x93, 0x10, 0x05, 0xe1, 0x81, 0x28, 0x42, 0xe3, 0xc6, 0x68, 0xf4, 0xe6, 0x1b, 0x84, 0x60 +.byte 0x4a, 0x89, 0xaf, 0xed, 0x79, 0x0f, 0x3b, 0xce, 0xf1, 0xf6, 0x44, 0xf5, 0x01, 0x78, 0xc0, 0x67 +.byte 0x00, 0x26, 0x02, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63 +.byte 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63 +.byte 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xca, 0x5b, 0xbe, 0x94, 0x33 +.byte 0x8c, 0x29, 0x95, 0x91, 0x16, 0x0a, 0x95, 0xbd, 0x47, 0x62, 0xc1, 0x89, 0xf3, 0x99, 0x36, 0xdf +.byte 0x46, 0x90, 0xc9, 0xa5, 0xed, 0x78, 0x6a, 0x6f, 0x47, 0x91, 0x68, 0xf8, 0x27, 0x67, 0x50, 0x33 +.byte 0x1d, 0xa1, 0xa6, 0xfb, 0xe0, 0xe5, 0x43, 0xa3, 0x84, 0x02, 0x57, 0x01, 0x5d, 0x9c, 0x48, 0x40 +.byte 0x82, 0x53, 0x10, 0xbc, 0xbf, 0xc7, 0x3b, 0x68, 0x90, 0xb6, 0x82, 0x2d, 0xe5, 0xf4, 0x65, 0xd0 +.byte 0xcc, 0x6d, 0x19, 0xcc, 0x95, 0xf9, 0x7b, 0xac, 0x4a, 0x94, 0xad, 0x0e, 0xde, 0x4b, 0x43, 0x1d +.byte 0x87, 0x07, 0x92, 0x13, 0x90, 0x80, 0x83, 0x64, 0x35, 0x39, 0x04, 0xfc, 0xe5, 0xe9, 0x6c, 0xb3 +.byte 0xb6, 0x1f, 0x50, 0x94, 0x38, 0x65, 0x50, 0x5c, 0x17, 0x46, 0xb9, 0xb6, 0x85, 0xb5, 0x1c, 0xb5 +.byte 0x17, 0xe8, 0xd6, 0x45, 0x9d, 0xd8, 0xb2, 0x26, 0xb0, 0xca, 0xc4, 0x70, 0x4a, 0xae, 0x60, 0xa4 +.byte 0xdd, 0xb3, 0xd9, 0xec, 0xfc, 0x3b, 0xd5, 0x57, 0x72, 0xbc, 0x3f, 0xc8, 0xc9, 0xb2, 0xde, 0x4b +.byte 0x6b, 0xf8, 0x23, 0x6c, 0x03, 0xc0, 0x05, 0xbd, 0x95, 0xc7, 0xcd, 0x73, 0x3b, 0x66, 0x80, 0x64 +.byte 0xe3, 0x1a, 0xac, 0x2e, 0xf9, 0x47, 0x05, 0xf2, 0x06, 0xb6, 0x9b, 0x73, 0xf5, 0x78, 0x33, 0x5b +.byte 0xc7, 0xa1, 0xfb, 0x27, 0x2a, 0xa1, 0xb4, 0x9a, 0x91, 0x8c, 0x91, 0xd3, 0x3a, 0x82, 0x3e, 0x76 +.byte 0x40, 0xb4, 0xcd, 0x52, 0x61, 0x51, 0x70, 0x28, 0x3f, 0xc5, 0xc5, 0x5a, 0xf2, 0xc9, 0x8c, 0x49 +.byte 0xbb, 0x14, 0x5b, 0x4d, 0xc8, 0xff, 0x67, 0x4d, 0x4c, 0x12, 0x96, 0xad, 0xf5, 0xfe, 0x78, 0xa8 +.byte 0x97, 0x87, 0xd7, 0xfd, 0x5e, 0x20, 0x80, 0xdc, 0xa1, 0x4b, 0x22, 0xfb, 0xd4, 0x89, 0xad, 0xba +.byte 0xce, 0x47, 0x97, 0x47, 0x55, 0x7b, 0x8f, 0x45, 0xc8, 0x67, 0x28, 0x84, 0x95, 0x1c, 0x68, 0x30 +.byte 0xef, 0xef, 0x49, 0xe0, 0x35, 0x7b, 0x64, 0xe7, 0x98, 0xb0, 0x94, 0xda, 0x4d, 0x85, 0x3b, 0x3e +.byte 0x55, 0xc4, 0x28, 0xaf, 0x57, 0xf3, 0x9e, 0x13, 0xdb, 0x46, 0x27, 0x9f, 0x1e, 0xa2, 0x5e, 0x44 +.byte 0x83, 0xa4, 0xa5, 0xca, 0xd5, 0x13, 0xb3, 0x4b, 0x3f, 0xc4, 0xe3, 0xc2, 0xe6, 0x86, 0x61, 0xa4 +.byte 0x52, 0x30, 0xb9, 0x7a, 0x20, 0x4f, 0x6f, 0x0f, 0x38, 0x53, 0xcb, 0x33, 0x0c, 0x13, 0x2b, 0x8f +.byte 0xd6, 0x9a, 0xbd, 0x2a, 0xc8, 0x2d, 0xb1, 0x1c, 0x7d, 0x4b, 0x51, 0xca, 0x47, 0xd1, 0x48, 0x27 +.byte 0x72, 0x5d, 0x87, 0xeb, 0xd5, 0x45, 0xe6, 0x48, 0x65, 0x9d, 0xaf, 0x52, 0x90, 0xba, 0x5b, 0xa2 +.byte 0x18, 0x65, 0x57, 0x12, 0x9f, 0x68, 0xb9, 0xd4, 0x15, 0x6b, 0x94, 0xc4, 0x69, 0x22, 0x98, 0xf4 +.byte 0x33, 0xe0, 0xed, 0xf9, 0x51, 0x8e, 0x41, 0x50, 0xc9, 0x34, 0x4f, 0x76, 0x90, 0xac, 0xfc, 0x38 +.byte 0xc1, 0xd8, 0xe1, 0x7b, 0xb9, 0xe3, 0xe3, 0x94, 0xe1, 0x46, 0x69, 0xcb, 0x0e, 0x0a, 0x50, 0x6b +.byte 0x13, 0xba, 0xac, 0x0f, 0x37, 0x5a, 0xb7, 0x12, 0xb5, 0x90, 0x81, 0x1e, 0x56, 0xae, 0x57, 0x22 +.byte 0x86, 0xd9, 0xc9, 0xd2, 0xd1, 0xd7, 0x51, 0xe3, 0xab, 0x3b, 0xc6, 0x55, 0xfd, 0x1e, 0x0e, 0xd3 +.byte 0x74, 0x0a, 0xd1, 0xda, 0xaa, 0xea, 0x69, 0xb8, 0x97, 0x28, 0x8f, 0x48, 0xc4, 0x07, 0xf8, 0x52 +.byte 0x43, 0x3a, 0xf4, 0xca, 0x55, 0x35, 0x2c, 0xb0, 0xa6, 0x6a, 0xc0, 0x9c, 0xf9, 0xf2, 0x81, 0xe1 +.byte 0x12, 0x6a, 0xc0, 0x45, 0xd9, 0x67, 0xb3, 0xce, 0xff, 0x23, 0xa2, 0x89, 0x0a, 0x54, 0xd4, 0x14 +.byte 0xb9, 0x2a, 0xa8, 0xd7, 0xec, 0xf9, 0xab, 0xcd, 0x25, 0x58, 0x32, 0x79, 0x8f, 0x90, 0x5b, 0x98 +.byte 0x39, 0xc4, 0x08, 0x06, 0xc1, 0xac, 0x7f, 0x0e, 0x3d, 0x00, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x69, 0x00, 0x26, 0x01, 0x30, 0x67, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e +.byte 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31 +.byte 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x01 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x93, 0x4b +.byte 0xbb, 0xe9, 0x66, 0x8a, 0xee, 0x9d, 0x5b, 0xd5, 0x34, 0x93, 0xd0, 0x1b, 0x1e, 0xc3, 0xe7, 0x9e +.byte 0xb8, 0x64, 0x33, 0x7f, 0x63, 0x78, 0x68, 0xb4, 0xcd, 0x2e, 0x71, 0x75, 0xd7, 0x9b, 0x20, 0xc6 +.byte 0x4d, 0x29, 0xbc, 0xb6, 0x68, 0x60, 0x8a, 0xf7, 0x21, 0x9a, 0x56, 0x35, 0x5a, 0xf3, 0x76, 0xbd +.byte 0xd8, 0xcd, 0x9a, 0xff, 0x93, 0x56, 0x4b, 0xa5, 0x59, 0x06, 0xa1, 0x93, 0x34, 0x29, 0xdd, 0x16 +.byte 0x34, 0x75, 0x4e, 0xf2, 0x81, 0xb4, 0xc7, 0x96, 0x4e, 0xad, 0x19, 0x15, 0x52, 0x4a, 0xfe, 0x3c +.byte 0x70, 0x75, 0x70, 0xcd, 0xaf, 0x2b, 0xab, 0x15, 0x9a, 0x33, 0x3c, 0xaa, 0xb3, 0x8b, 0xaa, 0xcd +.byte 0x43, 0xfd, 0xf5, 0xea, 0x70, 0xff, 0xed, 0xcf, 0x11, 0x3b, 0x94, 0xce, 0x4e, 0x32, 0x16, 0xd3 +.byte 0x23, 0x40, 0x2a, 0x77, 0xb3, 0xaf, 0x3c, 0x01, 0x2c, 0x6c, 0xed, 0x99, 0x2c, 0x8b, 0xd9, 0x4e +.byte 0x69, 0x98, 0xb2, 0xf7, 0x8f, 0x41, 0xb0, 0x32, 0x78, 0x61, 0xd6, 0x0d, 0x5f, 0xc3, 0xfa, 0xa2 +.byte 0x40, 0x92, 0x1d, 0x5c, 0x17, 0xe6, 0x70, 0x3e, 0x35, 0xe7, 0xa2, 0xb7, 0xc2, 0x62, 0xe2, 0xab +.byte 0xa4, 0x38, 0x4c, 0xb5, 0x39, 0x35, 0x6f, 0xea, 0x03, 0x69, 0xfa, 0x3a, 0x54, 0x68, 0x85, 0x6d +.byte 0xd6, 0xf2, 0x2f, 0x43, 0x55, 0x1e, 0x91, 0x0d, 0x0e, 0xd8, 0xd5, 0x6a, 0xa4, 0x96, 0xd1, 0x13 +.byte 0x3c, 0x2c, 0x78, 0x50, 0xe8, 0x3a, 0x92, 0xd2, 0x17, 0x56, 0xe5, 0x35, 0x1a, 0x40, 0x1c, 0x3e +.byte 0x8d, 0x2c, 0xed, 0x39, 0xdf, 0x42, 0xe0, 0x83, 0x41, 0x74, 0xdf, 0xa3, 0xcd, 0xc2, 0x86, 0x60 +.byte 0x48, 0x68, 0xe3, 0x69, 0x0b, 0x54, 0x00, 0x8b, 0xe4, 0x76, 0x69, 0x21, 0x0d, 0x79, 0x4e, 0x34 +.byte 0x08, 0x5e, 0x14, 0xc2, 0xcc, 0xb1, 0xb7, 0xad, 0xd7, 0x7c, 0x70, 0x8a, 0xc7, 0x85, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x6a, 0x00, 0x24, 0x01, 0x30, 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e +.byte 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30 +.byte 0x30, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c +.byte 0x64, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 +.byte 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71, 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11, 0x64, 0xdf +.byte 0xce, 0x4d, 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f, 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f, 0xf0, 0xc3 +.byte 0xa1, 0xda, 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90, 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0, 0x9e, 0xe8 +.byte 0x5f, 0xec, 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6, 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0, 0xc8, 0xaf +.byte 0x53, 0x2f, 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e, 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d, 0xfa, 0x5a +.byte 0xb6, 0x73, 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f, 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25, 0x14, 0x54 +.byte 0xeb, 0x26, 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30, 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a, 0xff, 0xad +.byte 0xeb, 0x29, 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87, 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34, 0x5f, 0xdb +.byte 0x43, 0x91, 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1, 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a, 0x3e, 0x10 +.byte 0xc8, 0x3b, 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b, 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51, 0x3c, 0x30 +.byte 0x2e, 0x5f, 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d, 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a, 0x2b, 0x85 +.byte 0x26, 0x92, 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f, 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8, 0x36, 0x3d +.byte 0xea, 0x9c, 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca, 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64, 0x8d, 0x17 +.byte 0x80, 0x33, 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9, 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0, 0xd5, 0x6e +.byte 0x13, 0x35, 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d, 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea, 0x3e, 0xbb +.byte 0x78, 0x0d, 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8, 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2, 0x44, 0xa0 +.byte 0x01, 0xab, 0x02, 0x01, 0x03, 0x6b, 0x00, 0x26, 0x02, 0x30, 0x69, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4b, 0x52, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x1d, 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x42, 0x55, 0x53, 0x49, 0x4e, 0x45, 0x53 +.byte 0x53, 0x20, 0x50, 0x4c, 0x41, 0x54, 0x46, 0x4f, 0x52, 0x4d, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x2e +.byte 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x29, 0x4e, 0x41, 0x56, 0x45, 0x52 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0xd4, 0xf1, 0x93, 0x5c, 0xb5, 0x40, 0x89, 0x0a, 0xab, 0x0d +.byte 0x90, 0x5b, 0x50, 0x63, 0xae, 0x90, 0x94, 0x74, 0x17, 0x45, 0x72, 0xd6, 0x7b, 0x65, 0x5a, 0x29 +.byte 0x4b, 0xa7, 0x56, 0xa0, 0x4b, 0xb8, 0x2f, 0x42, 0x75, 0xe9, 0xd9, 0x7b, 0x24, 0x5a, 0x31, 0x65 +.byte 0xab, 0x17, 0x17, 0xd1, 0x33, 0x3a, 0xd9, 0x11, 0xdc, 0x40, 0x36, 0x87, 0xdf, 0xc7, 0x6a, 0xe9 +.byte 0x26, 0x5e, 0x59, 0x8a, 0x77, 0xe3, 0xe8, 0x48, 0x9c, 0x31, 0x16, 0xfa, 0x3e, 0x91, 0xb1, 0xca +.byte 0xc9, 0xa3, 0xe2, 0x9f, 0xce, 0x21, 0x53, 0xa3, 0x02, 0x36, 0x30, 0xcb, 0x52, 0x02, 0xe5, 0xda +.byte 0x32, 0x5d, 0xc3, 0xc5, 0xe6, 0xf9, 0xee, 0x11, 0xc7, 0x8b, 0xc9, 0x44, 0x1e, 0x84, 0x93, 0x18 +.byte 0x4a, 0xb4, 0x9f, 0xe5, 0x12, 0x64, 0x69, 0xd0, 0x26, 0x85, 0x62, 0x01, 0xb6, 0xc9, 0x02, 0x1d +.byte 0xbe, 0x83, 0x51, 0xbb, 0x5c, 0xda, 0xf8, 0xad, 0x15, 0x6a, 0x99, 0xf7, 0x92, 0x54, 0xf7, 0x34 +.byte 0x5b, 0xe9, 0xbf, 0xea, 0x29, 0x81, 0x12, 0xd4, 0x53, 0x91, 0x96, 0xb3, 0x91, 0x5a, 0xdd, 0xfe +.byte 0x90, 0x73, 0x28, 0xfb, 0x30, 0x46, 0xb5, 0xca, 0x08, 0x07, 0xc7, 0x71, 0x72, 0xc9, 0x66, 0xd3 +.byte 0x34, 0x97, 0xf6, 0x8c, 0xf4, 0x18, 0x4a, 0xe1, 0xd0, 0x3d, 0x5a, 0x45, 0xb6, 0x69, 0xa7, 0x29 +.byte 0xfb, 0x23, 0xce, 0x88, 0xd8, 0x12, 0x9c, 0x00, 0x48, 0xa8, 0xa6, 0x0f, 0xb3, 0x3b, 0x92, 0x8d +.byte 0x71, 0x0e, 0x74, 0xc5, 0x8b, 0xc8, 0x4c, 0xf9, 0xf4, 0x9b, 0x8e, 0xb8, 0x3c, 0x69, 0xed, 0x6f +.byte 0x3b, 0x50, 0x2f, 0x58, 0xed, 0xc4, 0xb0, 0xd0, 0x1c, 0x1b, 0x6a, 0x0c, 0xe2, 0xbc, 0x44, 0xaa +.byte 0xd8, 0xcd, 0x14, 0x5d, 0x94, 0x78, 0x61, 0xbf, 0x0e, 0x6e, 0xda, 0x2a, 0xbc, 0x2f, 0x0c, 0x0b +.byte 0x71, 0xa6, 0xb3, 0x16, 0x3f, 0x9c, 0xe6, 0xf9, 0xcc, 0x9f, 0x53, 0x35, 0xe2, 0x03, 0xa0, 0xa0 +.byte 0x18, 0xbf, 0xbb, 0xf1, 0xbe, 0xf4, 0xd6, 0x8c, 0x87, 0x0d, 0x42, 0xf7, 0x06, 0xb9, 0xf1, 0x6d +.byte 0xed, 0x04, 0x94, 0xa8, 0xfe, 0xb6, 0xd3, 0x06, 0xc6, 0x40, 0x61, 0xdf, 0x9d, 0x9d, 0xf3, 0x54 +.byte 0x76, 0xce, 0x53, 0x3a, 0x01, 0xa6, 0x92, 0x41, 0xec, 0x04, 0xa3, 0x8f, 0x0d, 0xa2, 0xd5, 0x09 +.byte 0xca, 0xd6, 0xcb, 0x9a, 0xf1, 0xef, 0x43, 0x5d, 0xc0, 0xab, 0xa5, 0x41, 0xcf, 0x5c, 0x53, 0x70 +.byte 0x70, 0xc9, 0x88, 0xa6, 0x2d, 0xd4, 0x6b, 0x61, 0x73, 0x50, 0x26, 0x86, 0x61, 0x0e, 0x5f, 0x1b +.byte 0xc2, 0x2b, 0xe2, 0x8c, 0xd5, 0xbb, 0x9d, 0xc1, 0x03, 0x42, 0xba, 0x94, 0xda, 0x5f, 0xa9, 0xb0 +.byte 0xca, 0xcc, 0x4d, 0x0a, 0xef, 0x47, 0x69, 0x03, 0x2f, 0x22, 0xfb, 0xf1, 0x28, 0xce, 0xbf, 0x5d +.byte 0x50, 0x65, 0xa8, 0x90, 0x6d, 0xb3, 0x74, 0xb0, 0x08, 0xc7, 0xac, 0xa8, 0xd1, 0xeb, 0x3e, 0x9c +.byte 0xfc, 0x5d, 0x1a, 0x83, 0x2e, 0x2b, 0xcb, 0xb5, 0xf3, 0x44, 0x9d, 0x3a, 0xa7, 0x17, 0x61, 0x96 +.byte 0xa2, 0x71, 0xd3, 0x70, 0x96, 0x15, 0x4d, 0xb7, 0x4c, 0x73, 0xee, 0x19, 0x5c, 0xc5, 0x5b, 0x3e +.byte 0x41, 0xfe, 0xac, 0x75, 0x60, 0x3b, 0x1b, 0x63, 0xce, 0x00, 0xdd, 0xda, 0x08, 0x90, 0x62, 0xb4 +.byte 0xe5, 0x2d, 0xee, 0x48, 0xa7, 0x6b, 0x17, 0x99, 0x54, 0xbe, 0x87, 0x4a, 0xe3, 0xa9, 0x5e, 0x04 +.byte 0x4c, 0xeb, 0x10, 0x6d, 0x54, 0xd6, 0xef, 0xf1, 0xe8, 0xf2, 0x62, 0x16, 0xcb, 0x80, 0x6b, 0xed +.byte 0x3d, 0xed, 0xf5, 0x1f, 0x30, 0xa5, 0xae, 0x4b, 0xc9, 0x13, 0xed, 0x8a, 0x01, 0x01, 0xc9, 0xb8 +.byte 0x51, 0x58, 0xc0, 0x66, 0x3a, 0xb1, 0x66, 0x4b, 0xc4, 0xd5, 0x31, 0x02, 0x62, 0xe9, 0x74, 0x84 +.byte 0x0c, 0xdb, 0x4d, 0x46, 0x2d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6d, 0x00, 0x78, 0x00, 0x30, 0x6b +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50 +.byte 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75 +.byte 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65 +.byte 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06 +.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 +.byte 0x62, 0x00, 0x04, 0x23, 0xa5, 0x0c, 0xb8, 0x2d, 0x12, 0xf5, 0x28, 0xf3, 0xb1, 0xb2, 0xdd, 0xe2 +.byte 0x02, 0x12, 0x80, 0x9e, 0x39, 0x5f, 0x49, 0x4d, 0x9f, 0xc9, 0x25, 0x34, 0x59, 0x74, 0xec, 0xbb +.byte 0x06, 0x1c, 0xe7, 0xc0, 0x72, 0xaf, 0xe8, 0xae, 0x2f, 0xe1, 0x41, 0x54, 0x87, 0x14, 0xa8, 0x4a +.byte 0xb2, 0xe8, 0x7c, 0x82, 0xe6, 0x5b, 0x6a, 0xb5, 0xdc, 0xb3, 0x75, 0xce, 0x8b, 0x06, 0xd0, 0x86 +.byte 0x23, 0xbf, 0x46, 0xd5, 0x8e, 0x0f, 0x3f, 0x04, 0xf4, 0xd7, 0x1c, 0x92, 0x7e, 0xf6, 0xa5, 0x63 +.byte 0xc2, 0xf5, 0x5f, 0x8e, 0x2e, 0x4f, 0xa1, 0x18, 0x19, 0x02, 0x2b, 0x32, 0x0a, 0x82, 0x64, 0x7d +.byte 0x16, 0x93, 0xd1, 0x6d, 0x00, 0x26, 0x02, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c +.byte 0x05, 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x1a, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x53, 0x2e, 0x70, 0x2e, 0x41, 0x2e, 0x2f +.byte 0x30, 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30, 0x39, 0x36, 0x37, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0xc6, 0xc4, 0xa5, 0x29, 0xa4, 0x2c, 0xef, 0xe5, 0x18, 0xc5 +.byte 0xb0, 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a, 0x5a, 0xc9, 0xc2, 0x48, 0x38, 0x0a, 0xc2, 0x1c +.byte 0xa0, 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40, 0x3f, 0xdd, 0x1d, 0x68, 0x1f, 0x08, 0x83, 0xd5 +.byte 0x2d, 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f, 0x6d, 0x99, 0x02, 0x92, 0x90, 0x16, 0xd5, 0x5f +.byte 0x08, 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20, 0xc2, 0xb1, 0xe0, 0x83, 0x51, 0x8a, 0x69, 0x4d +.byte 0x00, 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e, 0xa3, 0x0e, 0xe4, 0x91, 0xcd, 0x58, 0xee, 0xdc +.byte 0xfb, 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9, 0x08, 0x01, 0x9f, 0xa6, 0x21, 0x1d, 0xf5, 0x41 +.byte 0x2d, 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a, 0xad, 0x22, 0xb4, 0x56, 0x65, 0x8e, 0x86, 0x54 +.byte 0x8f, 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78, 0xa3, 0x30, 0x23, 0xba, 0xcd, 0xf0, 0x7d, 0x13 +.byte 0x57, 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c, 0xc4, 0xab, 0x9f, 0x80, 0x5a, 0x5b, 0x3a, 0xbd +.byte 0xc9, 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b, 0x0e, 0xb7, 0x8a, 0x0c, 0x5d, 0x07, 0x37, 0x08 +.byte 0xcb, 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35, 0xc5, 0xcc, 0xcc, 0x2e, 0x8e, 0xdd, 0x2a, 0xed +.byte 0xb7, 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22, 0x55, 0x1b, 0xe3, 0x46, 0xe3, 0xe3, 0x3d, 0xd0 +.byte 0x35, 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b, 0xa1, 0xcc, 0x89, 0x1b, 0xe1, 0x30, 0x26, 0xfc +.byte 0xa0, 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04, 0xeb, 0xa3, 0x39, 0x92, 0x06, 0x9f, 0x99, 0xd3 +.byte 0xbf, 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe, 0x96, 0x87, 0x1e, 0x3c, 0x65, 0xf6, 0xa3, 0x18 +.byte 0x24, 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8, 0x3a, 0x76, 0x24, 0x4f, 0x81, 0x21, 0xc5, 0xe3 +.byte 0x0f, 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb, 0xfe, 0xd4, 0x0e, 0xd3, 0x68, 0xb9, 0xdd, 0xc4 +.byte 0x7a, 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd, 0xdb, 0x9c, 0xd2, 0xf2, 0x07, 0x9b, 0x2e, 0xb6 +.byte 0xbc, 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11, 0xf2, 0x97, 0x1a, 0x42, 0x61, 0xf7, 0x4a, 0x97 +.byte 0xe8, 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81, 0xb2, 0xa2, 0x39, 0xcf, 0xf7, 0x3c, 0xff, 0x18 +.byte 0xfb, 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02, 0xac, 0x7b, 0x92, 0xd0, 0x4e, 0x14, 0x4f, 0x59 +.byte 0x45, 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8, 0x3f, 0x45, 0xcf, 0xcf, 0xaf, 0x9b, 0x6f, 0xfb +.byte 0x84, 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94, 0x84, 0x9e, 0xee, 0xbc, 0xc0, 0x4a, 0x8f, 0x4a +.byte 0x93, 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61, 0x50, 0x4e, 0x10, 0xd8, 0xe3, 0x35, 0x7c, 0x4c +.byte 0x19, 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f, 0xc8, 0xb5, 0xcd, 0xe4, 0x1f, 0xd7, 0x17, 0x06 +.byte 0x0d, 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a, 0xfc, 0x10, 0x1b, 0x62, 0x64, 0x9d, 0x6d, 0xe0 +.byte 0x95, 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14, 0xe6, 0xbd, 0x05, 0xfb, 0xb8, 0x9f, 0xe6, 0xdf +.byte 0x8b, 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53, 0xc5, 0x80, 0x34, 0x50, 0x28, 0x58, 0xf0, 0x12 +.byte 0x50, 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63, 0xbc, 0xf4, 0xb2, 0xad, 0x9b, 0x2b, 0xb2, 0xfe +.byte 0xe1, 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94, 0xde, 0x7b, 0x83, 0xb8, 0xff, 0xe3, 0x56, 0x8d +.byte 0xb7, 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1, 0x5d, 0x9d, 0xa4, 0x0b, 0x4c, 0x2b, 0xd9, 0xb2 +.byte 0x18, 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e, 0x00, 0x78, 0x00, 0x30, 0x6c +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30 +.byte 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63 +.byte 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65 +.byte 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0x38, 0x08, 0xfe, 0xb1, 0xa0, 0x96, 0xd2, 0x7a, 0xac, 0xaf, 0x49, 0x3a +.byte 0xd0, 0xc0, 0xe0, 0xc3, 0x3b, 0x28, 0xaa, 0xf1, 0x72, 0x6d, 0x65, 0x00, 0x47, 0x88, 0x84, 0xfc +.byte 0x9a, 0x26, 0x6b, 0xaa, 0x4b, 0xba, 0x6c, 0x04, 0x0a, 0x88, 0x5e, 0x17, 0xf2, 0x55, 0x87, 0xfc +.byte 0x30, 0xb0, 0x34, 0xe2, 0x34, 0x58, 0x57, 0x1a, 0x84, 0x53, 0xe9, 0x30, 0xd9, 0xa9, 0xf2, 0x96 +.byte 0x74, 0xc3, 0x51, 0x1f, 0x58, 0x49, 0x31, 0xcc, 0x98, 0x4e, 0x60, 0x11, 0x87, 0x75, 0xd3, 0x72 +.byte 0x94, 0x90, 0x4f, 0x9b, 0x10, 0x25, 0x2a, 0xa8, 0x78, 0x2d, 0xbe, 0x90, 0x41, 0x58, 0x90, 0x15 +.byte 0x72, 0xa7, 0xa1, 0xb7, 0x6e, 0x00, 0x26, 0x02, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65 +.byte 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68 +.byte 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41 +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43 +.byte 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x8b, 0xc2, 0xe7, 0xaf, 0x65, 0x9b, 0x05, 0x67, 0x96 +.byte 0xc9, 0x0d, 0x24, 0xb9, 0xd0, 0x0e, 0x64, 0xfc, 0xce, 0xe2, 0x24, 0x18, 0x2c, 0x84, 0x7f, 0x77 +.byte 0x51, 0xcb, 0x04, 0x11, 0x36, 0xb8, 0x5e, 0xed, 0x69, 0x71, 0xa7, 0x9e, 0xe4, 0x25, 0x09, 0x97 +.byte 0x67, 0xc1, 0x47, 0xc2, 0xcf, 0x91, 0x16, 0x36, 0x62, 0x3d, 0x38, 0x04, 0xe1, 0x51, 0x82, 0xff +.byte 0xac, 0xd2, 0xb4, 0x69, 0xdd, 0x2e, 0xec, 0x11, 0xa3, 0x45, 0xee, 0x6b, 0x6b, 0x3b, 0x4c, 0xbf +.byte 0x8c, 0x8d, 0xa4, 0x1e, 0x9d, 0x11, 0xb9, 0xe9, 0x38, 0xf9, 0x7a, 0x0e, 0x0c, 0x98, 0xe2, 0x23 +.byte 0x1d, 0xd1, 0x4e, 0x63, 0xd4, 0xe7, 0xb8, 0x41, 0x44, 0xfb, 0x6b, 0xaf, 0x6b, 0xda, 0x1f, 0xd3 +.byte 0xc5, 0x91, 0x88, 0x5b, 0xa4, 0x89, 0x92, 0xd1, 0x81, 0xe6, 0x8c, 0x39, 0x58, 0xa0, 0xd6, 0x69 +.byte 0x43, 0xa9, 0xad, 0x98, 0x52, 0x58, 0x6e, 0xdb, 0x0a, 0xfb, 0x6b, 0xcf, 0x68, 0xfa, 0xe3, 0xa4 +.byte 0x5e, 0x3a, 0x45, 0x73, 0x98, 0x07, 0xea, 0x5f, 0x02, 0x72, 0xde, 0x0c, 0xa5, 0xb3, 0x9f, 0xae +.byte 0xa9, 0x1d, 0xb7, 0x1d, 0xb3, 0xfc, 0x8a, 0x59, 0xe7, 0x6e, 0x72, 0x65, 0xad, 0xf5, 0x30, 0x94 +.byte 0x23, 0x07, 0xf3, 0x82, 0x16, 0x4b, 0x35, 0x98, 0x9c, 0x53, 0xbb, 0x2f, 0xca, 0xe4, 0x5a, 0xd9 +.byte 0xc7, 0x8d, 0x1d, 0xfc, 0x98, 0x99, 0xfb, 0x2c, 0xa4, 0x82, 0x6b, 0xf0, 0x2a, 0x1f, 0x8e, 0x0b +.byte 0x5f, 0x71, 0x5c, 0x5c, 0xae, 0x42, 0x7b, 0x29, 0x89, 0x81, 0xcb, 0x03, 0xa3, 0x99, 0xca, 0x88 +.byte 0x9e, 0x0b, 0x40, 0x09, 0x41, 0x33, 0xdb, 0xe6, 0x58, 0x7a, 0xfd, 0xae, 0x99, 0x70, 0xc0, 0x5a +.byte 0x0f, 0xd6, 0x13, 0x86, 0x71, 0x2f, 0x76, 0x69, 0xfc, 0x90, 0xdd, 0xdb, 0x2d, 0x6e, 0xd1, 0xf2 +.byte 0x9b, 0xf5, 0x1a, 0x6b, 0x9e, 0x6f, 0x15, 0x8c, 0x7a, 0xf0, 0x4b, 0x28, 0xa0, 0x22, 0x38, 0x80 +.byte 0x24, 0x6c, 0x36, 0xa4, 0x3b, 0xf2, 0x30, 0x91, 0xf3, 0x78, 0x13, 0xcf, 0xc1, 0x3f, 0x35, 0xab +.byte 0xf1, 0x1d, 0x11, 0x23, 0xb5, 0x43, 0x22, 0x9e, 0x01, 0x92, 0xb7, 0x18, 0x02, 0xe5, 0x11, 0xd1 +.byte 0x82, 0xdb, 0x15, 0x00, 0xcc, 0x61, 0x37, 0xc1, 0x2a, 0x7c, 0x9a, 0xe1, 0xd0, 0xba, 0xb3, 0x50 +.byte 0x46, 0xee, 0x82, 0xac, 0x9d, 0x31, 0xf8, 0xfb, 0x23, 0xe2, 0x03, 0x00, 0x48, 0x70, 0xa3, 0x09 +.byte 0x26, 0x79, 0x15, 0x53, 0x60, 0xf3, 0x38, 0x5c, 0xad, 0x38, 0xea, 0x81, 0x00, 0x63, 0x14, 0xb9 +.byte 0x33, 0x5e, 0xdd, 0x0b, 0xdb, 0xa0, 0x45, 0x07, 0x1a, 0x33, 0x09, 0xf8, 0x4d, 0xb4, 0xa7, 0x02 +.byte 0xa6, 0x69, 0xf4, 0xc2, 0x59, 0x05, 0x88, 0x65, 0x85, 0x56, 0xae, 0x4b, 0xcb, 0xe0, 0xde, 0x3c +.byte 0x7d, 0x2d, 0x1a, 0xc8, 0xe9, 0xfb, 0x1f, 0xa3, 0x61, 0x4a, 0xd6, 0x2a, 0x13, 0xad, 0x77, 0x4c +.byte 0x1a, 0x18, 0x9b, 0x91, 0x0f, 0x58, 0xd8, 0x06, 0x54, 0xc5, 0x97, 0xf8, 0xaa, 0x3f, 0x20, 0x8a +.byte 0xa6, 0x85, 0xa6, 0x77, 0xf6, 0xa6, 0xfc, 0x1c, 0xe2, 0xee, 0x6e, 0x94, 0x33, 0x2a, 0x83, 0x50 +.byte 0x84, 0x0a, 0xe5, 0x4f, 0x86, 0xf8, 0x50, 0x45, 0x78, 0x00, 0x81, 0xeb, 0x5b, 0x68, 0xe3, 0x26 +.byte 0x8d, 0xcc, 0x7b, 0x5c, 0x51, 0xf4, 0x14, 0x2c, 0x40, 0xbe, 0x1a, 0x60, 0x1d, 0x7a, 0x72, 0x61 +.byte 0x1d, 0x1f, 0x63, 0x2d, 0x88, 0xaa, 0xce, 0xa2, 0x45, 0x90, 0x08, 0xfc, 0x6b, 0xbe, 0xb3, 0x50 +.byte 0x2a, 0x5a, 0xfd, 0xa8, 0x48, 0x18, 0x46, 0xd6, 0x90, 0x40, 0x92, 0x90, 0x0a, 0x84, 0x5e, 0x68 +.byte 0x31, 0xf8, 0xeb, 0xed, 0x0d, 0xd3, 0x1d, 0xc6, 0x7d, 0x99, 0x18, 0x55, 0x56, 0x27, 0x65, 0x2e +.byte 0x8d, 0x45, 0xc5, 0x24, 0xec, 0xce, 0xe3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e, 0x00, 0x26, 0x01 +.byte 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f +.byte 0x6d, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x61 +.byte 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc6 +.byte 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5, 0x2d, 0x2d, 0x32, 0xa6, 0xdf, 0xe5, 0x81, 0x3f +.byte 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3, 0xd5, 0x94, 0x34, 0x67, 0xa2, 0x0a, 0x1c, 0xb0 +.byte 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2, 0x8f, 0xd0, 0x98, 0xa4, 0xa9, 0x41, 0x59, 0x3a +.byte 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38, 0xa4, 0x4a, 0xcc, 0x4d, 0x25, 0x82, 0xf7, 0x4a +.byte 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d, 0x71, 0x91, 0x7e, 0x63, 0xb6, 0xab, 0xa6, 0x5f +.byte 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe, 0xf8, 0xc5, 0xec, 0xdb, 0x38, 0x92, 0xe3, 0x06 +.byte 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55, 0xfb, 0xcb, 0x5a, 0x89, 0x15, 0x7e, 0x71, 0xe8 +.byte 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a, 0x38, 0x50, 0x5b, 0x77, 0x31, 0x1b, 0x8d, 0xb3 +.byte 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00, 0x14, 0x5a, 0x04, 0xb7, 0xba, 0x13, 0xeb, 0x51 +.byte 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61, 0x87, 0x81, 0x41, 0x50, 0xa6, 0x79, 0x5c, 0x89 +.byte 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d, 0x1c, 0x53, 0x2c, 0x7e, 0x98, 0xcd, 0x1a, 0x06 +.byte 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13, 0x5c, 0xa1, 0x71, 0xd3, 0x5a, 0x7c, 0x55, 0xdb +.byte 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04, 0xe5, 0x11, 0xb4, 0x29, 0x80, 0x12, 0xf1, 0x79 +.byte 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66, 0xb7, 0x88, 0xb7, 0x78, 0xf2, 0xca, 0x0a, 0xa8 +.byte 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d, 0x95, 0x84, 0xc1, 0xa1, 0x25, 0x1e, 0x87, 0x5d +.byte 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb, 0x6e, 0x0b, 0x51, 0x38, 0xb8, 0x4b, 0xcb, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x6f, 0x00, 0x26, 0x01, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30 +.byte 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49 +.byte 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x47, 0x42, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 +.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd8, 0x17, 0xb7, 0x1c, 0x4a, 0x24, 0x2a, 0xd6 +.byte 0x97, 0xb1, 0xca, 0xe2, 0x1e, 0xfb, 0x7d, 0x38, 0xef, 0x98, 0xf5, 0xb2, 0x39, 0x98, 0x4e, 0x27 +.byte 0xb8, 0x11, 0x5d, 0x7b, 0xd2, 0x25, 0x94, 0x88, 0x82, 0x15, 0x26, 0x6a, 0x1b, 0x31, 0xbb, 0xa8 +.byte 0x5b, 0x21, 0x21, 0x2b, 0xd8, 0x0f, 0x4e, 0x9f, 0x5a, 0xf1, 0xb1, 0x5a, 0xe4, 0x79, 0xd6, 0x32 +.byte 0x23, 0x2b, 0xe1, 0x53, 0xcc, 0x99, 0x45, 0x5c, 0x7b, 0x4f, 0xad, 0xbc, 0xbf, 0x87, 0x4a, 0x0b +.byte 0x4b, 0x97, 0x5a, 0xa8, 0xf6, 0x48, 0xec, 0x7d, 0x7b, 0x0d, 0xcd, 0x21, 0x06, 0xdf, 0x9e, 0x15 +.byte 0xfd, 0x41, 0x8a, 0x48, 0xb7, 0x20, 0xf4, 0xa1, 0x7a, 0x1b, 0x57, 0xd4, 0x5d, 0x50, 0xff, 0xba +.byte 0x67, 0xd8, 0x23, 0x99, 0x1f, 0xc8, 0x3f, 0xe3, 0xde, 0xff, 0x6f, 0x5b, 0x77, 0xb1, 0x6b, 0x6e +.byte 0xb8, 0xc9, 0x64, 0xf7, 0xe1, 0xca, 0x41, 0x46, 0x0e, 0x29, 0x71, 0xd0, 0xb9, 0x23, 0xfc, 0xc9 +.byte 0x81, 0x5f, 0x4e, 0xf7, 0x6f, 0xdf, 0xbf, 0x84, 0xad, 0x73, 0x64, 0xbb, 0xb7, 0x42, 0x8e, 0x69 +.byte 0xf6, 0xd4, 0x76, 0x1d, 0x7e, 0x9d, 0xa7, 0xb8, 0x57, 0x8a, 0x51, 0x67, 0x72, 0xd7, 0xd4, 0xa8 +.byte 0xb8, 0x95, 0x54, 0x40, 0x73, 0x03, 0xf6, 0xea, 0xf4, 0xeb, 0xfe, 0x28, 0x42, 0x77, 0x3f, 0x9d +.byte 0x23, 0x1b, 0xb2, 0xb6, 0x3d, 0x80, 0x14, 0x07, 0x4c, 0x2e, 0x4f, 0xf7, 0xd5, 0x0a, 0x16, 0x0d +.byte 0xbd, 0x66, 0x43, 0x37, 0x7e, 0x23, 0x43, 0x79, 0xc3, 0x40, 0x86, 0xf5, 0x4c, 0x29, 0xda, 0x8e +.byte 0x9a, 0xad, 0x0d, 0xa5, 0x04, 0x87, 0x88, 0x1e, 0x85, 0xe3, 0xe9, 0x53, 0xd5, 0x9b, 0xc8, 0x8b +.byte 0x03, 0x63, 0x78, 0xeb, 0xe0, 0x19, 0x4a, 0x6e, 0xbb, 0x2f, 0x6b, 0x33, 0x64, 0x58, 0x93, 0xad +.byte 0x69, 0xbf, 0x8f, 0x1b, 0xef, 0x82, 0x48, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6f, 0x00, 0x78 +.byte 0x00, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48 +.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b +.byte 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53 +.byte 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e +.byte 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47 +.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x43, 0x20, 0x43, 0x41 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x4c, 0xe9, 0x50, 0xc0, 0xc6, 0x0f, 0x72, 0x18 +.byte 0xbc, 0xd8, 0xf1, 0xba, 0xb3, 0x89, 0xe2, 0x79, 0x4a, 0xa3, 0x16, 0xa7, 0x6b, 0x54, 0x24, 0xdb +.byte 0x51, 0xff, 0xea, 0xf4, 0x09, 0x24, 0xc3, 0x0b, 0x22, 0x9f, 0xcb, 0x6a, 0x27, 0x82, 0x81, 0x0d +.byte 0xd2, 0xc0, 0xaf, 0x31, 0xe4, 0x74, 0x82, 0x6e, 0xca, 0x25, 0xd9, 0x8c, 0x75, 0x9d, 0xf1, 0xdb +.byte 0xd0, 0x9a, 0xa2, 0x4b, 0x21, 0x7e, 0x16, 0xa7, 0x63, 0x90, 0xd2, 0x39, 0xd4, 0xb1, 0x87, 0x78 +.byte 0x5f, 0x18, 0x96, 0x0f, 0x50, 0x1b, 0x35, 0x37, 0x0f, 0x6a, 0xc6, 0xdc, 0xd9, 0x13, 0x4d, 0xa4 +.byte 0x8e, 0x90, 0x37, 0xe6, 0xbd, 0x5b, 0x31, 0x91, 0x70, 0x00, 0x78, 0x00, 0x30, 0x6e, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x13, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65 +.byte 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x53, 0x41, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34 +.byte 0x30, 0x36, 0x38, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x46, 0x49 +.byte 0x52, 0x4d, 0x41, 0x50, 0x52, 0x4f, 0x46, 0x45, 0x53, 0x49, 0x4f, 0x4e, 0x41, 0x4c, 0x20, 0x43 +.byte 0x41, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x2d, 0x41, 0x20, 0x57, 0x45, 0x42, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0x47, 0x53, 0xea, 0x2c, 0x11, 0xa4, 0x77, 0xc7, 0x2a, 0xea, 0xf3, 0xd6 +.byte 0x5f, 0x7b, 0xd3, 0x04, 0x91, 0x5c, 0xfa, 0x88, 0xc6, 0x22, 0xb9, 0x83, 0x10, 0x62, 0x77, 0x84 +.byte 0x33, 0x2d, 0xe9, 0x03, 0x88, 0xd4, 0xe0, 0x33, 0xf7, 0xed, 0x77, 0x2c, 0x4a, 0x60, 0xea, 0xe4 +.byte 0x6f, 0xad, 0x6d, 0xb4, 0xf8, 0x4c, 0x8a, 0xa4, 0xe4, 0x1f, 0xca, 0xea, 0x4f, 0x38, 0x4a, 0x2e +.byte 0x82, 0x73, 0x2b, 0xc7, 0x66, 0x9b, 0x0a, 0x8c, 0x40, 0x9c, 0x7c, 0x8a, 0xf6, 0xf2, 0x39, 0x60 +.byte 0xb2, 0xde, 0xcb, 0xec, 0xb8, 0xe4, 0x6f, 0xea, 0x9b, 0x5d, 0xb7, 0x53, 0x90, 0x18, 0x32, 0x55 +.byte 0xc5, 0x20, 0xb7, 0x94, 0x71, 0x00, 0x26, 0x02, 0x30, 0x6f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x4b, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x12, 0x30, 0x10, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31 +.byte 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f +.byte 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0x88, 0xd7, 0xea, 0xce, 0x0f +.byte 0x20, 0x4e, 0xbe, 0xe6, 0xd6, 0x03, 0x6d, 0xee, 0x59, 0xfc, 0xc2, 0x57, 0xdf, 0x29, 0x68, 0xa1 +.byte 0x83, 0x0e, 0x3e, 0x68, 0xc7, 0x68, 0x58, 0x9c, 0x1c, 0x60, 0x4b, 0x89, 0x43, 0x0c, 0xb9, 0xd4 +.byte 0x15, 0xb2, 0xee, 0xc1, 0x4e, 0x75, 0xe9, 0xb5, 0xa7, 0xef, 0xe5, 0xe9, 0x35, 0x99, 0xe4, 0xcc +.byte 0x1c, 0xe7, 0x4b, 0x5f, 0x8d, 0x33, 0x30, 0x20, 0x33, 0x53, 0xd9, 0xa6, 0xbb, 0xd5, 0x3e, 0x13 +.byte 0x8e, 0xe9, 0x1f, 0x87, 0x49, 0xad, 0x50, 0x2d, 0x50, 0xca, 0x18, 0xbe, 0x01, 0x58, 0xa2, 0x13 +.byte 0x70, 0x96, 0xbb, 0x89, 0x88, 0x56, 0x80, 0x5c, 0xf8, 0xbd, 0x2c, 0x3c, 0xe1, 0x4c, 0x57, 0x88 +.byte 0xbb, 0xd3, 0xb9, 0x95, 0xef, 0xcb, 0xc7, 0xf6, 0xda, 0x31, 0x74, 0x28, 0xa6, 0xe6, 0x54, 0x89 +.byte 0xf5, 0x41, 0x31, 0xca, 0xe5, 0x26, 0x1a, 0xcd, 0x82, 0xe0, 0x70, 0xda, 0x3b, 0x29, 0xbb, 0xd5 +.byte 0x03, 0xf5, 0x99, 0xba, 0x55, 0xf5, 0x64, 0xd1, 0x60, 0x0e, 0xb3, 0x89, 0x49, 0xb8, 0x8a, 0x2f +.byte 0x05, 0xd2, 0x84, 0x45, 0x28, 0x7c, 0x8f, 0x68, 0x50, 0x12, 0x78, 0xfc, 0x0b, 0xb5, 0x53, 0xcb +.byte 0xc2, 0x98, 0x1c, 0x84, 0xa3, 0x9e, 0xb0, 0xbe, 0x23, 0xa4, 0xda, 0xdc, 0xc8, 0x2b, 0x1e, 0xda +.byte 0x6e, 0x45, 0x1e, 0x89, 0x98, 0xda, 0xf9, 0x00, 0x2e, 0x06, 0xe9, 0x0c, 0x3b, 0x70, 0xd5, 0x50 +.byte 0x25, 0x88, 0x99, 0xcb, 0xcd, 0x73, 0x60, 0xf7, 0xd5, 0xff, 0x35, 0x67, 0xc5, 0xa1, 0xbc, 0x5e +.byte 0xab, 0xcd, 0x4a, 0xb8, 0x45, 0xeb, 0xc8, 0x68, 0x1e, 0x0d, 0x0d, 0x14, 0x46, 0x12, 0xe3, 0xd2 +.byte 0x64, 0x62, 0x8a, 0x42, 0x98, 0xbc, 0xb4, 0xc6, 0x08, 0x08, 0xf8, 0xfd, 0xa8, 0x4c, 0x64, 0x9c +.byte 0x76, 0x01, 0xbd, 0x2f, 0xa9, 0x6c, 0x33, 0x0f, 0xd8, 0x3f, 0x28, 0xb8, 0x3c, 0x69, 0x01, 0x42 +.byte 0x86, 0x7e, 0x69, 0xc1, 0xc9, 0x06, 0xca, 0xe5, 0x7a, 0x46, 0x65, 0xe9, 0xc2, 0xd6, 0x50, 0x41 +.byte 0x2e, 0x3f, 0xb7, 0xe4, 0xed, 0x6c, 0xd7, 0xbf, 0x26, 0x01, 0x11, 0xa2, 0x16, 0x29, 0x4a, 0x6b +.byte 0x34, 0x06, 0x90, 0xec, 0x13, 0xd2, 0xb6, 0xfb, 0x6a, 0x76, 0xd2, 0x3c, 0xed, 0xf0, 0xd6, 0x2d +.byte 0xdd, 0xe1, 0x15, 0xec, 0xa3, 0x9b, 0x2f, 0x2c, 0xc9, 0x3e, 0x2b, 0xe4, 0x69, 0x3b, 0xff, 0x72 +.byte 0x25, 0xb1, 0x36, 0x86, 0x5b, 0xc7, 0x7f, 0x6b, 0x8b, 0x55, 0x1b, 0x4a, 0xc5, 0x20, 0x61, 0x3d +.byte 0xae, 0xcb, 0x50, 0xe1, 0x08, 0x3a, 0xbe, 0xb0, 0x8f, 0x63, 0x41, 0x53, 0x30, 0x08, 0x59, 0x3c +.byte 0x98, 0x1d, 0x77, 0xba, 0x63, 0x91, 0x7a, 0xca, 0x10, 0x50, 0x60, 0xbf, 0xf0, 0xd7, 0xbc, 0x95 +.byte 0x87, 0x8f, 0x97, 0xc5, 0xfe, 0x97, 0x6a, 0x01, 0x94, 0xa3, 0x7c, 0x5b, 0x85, 0x1d, 0x2a, 0x39 +.byte 0x3a, 0xd0, 0x54, 0xa1, 0xd1, 0x39, 0x71, 0x9d, 0xfd, 0x21, 0xf9, 0xb5, 0x7b, 0xf0, 0xe2, 0xe0 +.byte 0x02, 0x8f, 0x6e, 0x96, 0x24, 0x25, 0x2c, 0xa0, 0x1e, 0x2c, 0xa8, 0xc4, 0x89, 0xa7, 0xef, 0xed +.byte 0x99, 0x06, 0x2f, 0xb6, 0x0a, 0x4c, 0x4f, 0xdb, 0xa2, 0xcc, 0x37, 0x1a, 0xaf, 0x47, 0x85, 0x2d +.byte 0x8a, 0x5f, 0xc4, 0x34, 0x34, 0x4c, 0x00, 0xfd, 0x18, 0x93, 0x67, 0x13, 0xd1, 0x37, 0xe6, 0x48 +.byte 0xb4, 0x8b, 0x06, 0xc5, 0x57, 0x7b, 0x19, 0x86, 0x0a, 0x79, 0xcb, 0x00, 0xc9, 0x52, 0xaf, 0x42 +.byte 0xff, 0x37, 0x8f, 0xe1, 0xa3, 0x1e, 0x7a, 0x3d, 0x50, 0xab, 0x63, 0x06, 0xe7, 0x15, 0xb5, 0x3f +.byte 0xb6, 0x45, 0x37, 0x94, 0x37, 0xb1, 0x7e, 0xf2, 0x48, 0xc3, 0x7f, 0xc5, 0x75, 0xfe, 0x97, 0x8d +.byte 0x45, 0x8f, 0x1a, 0xa7, 0x1a, 0x72, 0x28, 0x1a, 0x40, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x73 +.byte 0x00, 0x5b, 0x00, 0x30, 0x71, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64 +.byte 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d +.byte 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x17, 0x30 +.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0e, 0x56, 0x41, 0x54, 0x48, 0x55, 0x2d, 0x32, 0x33 +.byte 0x35, 0x38, 0x34, 0x34, 0x39, 0x37, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x15, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00 +.byte 0x04, 0x96, 0xdc, 0x3d, 0x8a, 0xd8, 0xb0, 0x7b, 0x6f, 0xc6, 0x27, 0xbe, 0x44, 0x90, 0xb1, 0xb3 +.byte 0x56, 0x15, 0x7b, 0x8e, 0x43, 0x24, 0x7d, 0x1a, 0x84, 0x59, 0xee, 0x63, 0x68, 0xb2, 0xc6, 0x5e +.byte 0x87, 0xd0, 0x15, 0x48, 0x1e, 0xa8, 0x90, 0xad, 0xbd, 0x53, 0xa2, 0xda, 0xde, 0x3a, 0x90, 0xa6 +.byte 0x60, 0x5f, 0x68, 0x32, 0xb5, 0x86, 0x41, 0xdf, 0x87, 0x5b, 0x2c, 0x7b, 0xc5, 0xfe, 0x7c, 0x7a +.byte 0xda, 0x76, 0x00, 0x78, 0x00, 0x30, 0x74, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41 +.byte 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65 +.byte 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x65, 0x72, 0x74, 0x75 +.byte 0x6d, 0x20, 0x45, 0x43, 0x2d, 0x33, 0x38, 0x34, 0x20, 0x43, 0x41, 0x30, 0x76, 0x30, 0x10, 0x06 +.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 +.byte 0x62, 0x00, 0x04, 0xc4, 0x28, 0x8e, 0xab, 0x18, 0x5b, 0x6a, 0xbe, 0x6e, 0x64, 0x37, 0x63, 0xe4 +.byte 0xcd, 0xec, 0xab, 0x3a, 0xf7, 0xcc, 0xa1, 0xb8, 0x0e, 0x82, 0x49, 0xd7, 0x86, 0x29, 0x9f, 0xa1 +.byte 0x94, 0xf2, 0xe3, 0x60, 0x78, 0x98, 0x81, 0x78, 0x06, 0x4d, 0xf2, 0xec, 0x9a, 0x0e, 0x57, 0x60 +.byte 0x83, 0x9f, 0xb4, 0xe6, 0x17, 0x2f, 0x1a, 0xb3, 0x5d, 0x02, 0x5b, 0x89, 0x23, 0x3c, 0xc2, 0x11 +.byte 0x05, 0x2a, 0xa7, 0x88, 0x13, 0x18, 0xf3, 0x50, 0x84, 0xd7, 0xbd, 0x34, 0x2c, 0x27, 0x89, 0x55 +.byte 0xff, 0xce, 0x4c, 0xe7, 0xdf, 0xa6, 0x1f, 0x28, 0xc4, 0xf0, 0x54, 0xc3, 0xb9, 0x7c, 0xb7, 0x53 +.byte 0xad, 0xeb, 0xc2, 0x7a, 0x00, 0x78, 0x00, 0x30, 0x78, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55 +.byte 0x04, 0x0b, 0x0c, 0x05, 0x43, 0x65, 0x72, 0x65, 0x73, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 +.byte 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x51, 0x32, 0x38, 0x32, 0x36, 0x30 +.byte 0x30, 0x34, 0x4a, 0x31, 0x2c, 0x30, 0x2a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x23, 0x41, 0x43 +.byte 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x20, 0x53 +.byte 0x45, 0x52, 0x56, 0x49, 0x44, 0x4f, 0x52, 0x45, 0x53, 0x20, 0x53, 0x45, 0x47, 0x55, 0x52, 0x4f +.byte 0x53, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 +.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf6, 0xba, 0x57, 0x53, 0xc8, 0xca, 0xab +.byte 0xdf, 0x36, 0x4a, 0x52, 0x21, 0xe4, 0x97, 0xd2, 0x83, 0x67, 0x9e, 0xf0, 0x65, 0x51, 0xd0, 0x5e +.byte 0x87, 0xc7, 0x47, 0xb1, 0x59, 0xf2, 0x57, 0x47, 0x9b, 0x00, 0x02, 0x93, 0x44, 0x17, 0x69, 0xdb +.byte 0x42, 0xc7, 0xb1, 0xb2, 0x3a, 0x18, 0x0e, 0xb4, 0x5d, 0x8c, 0xb3, 0x66, 0x5d, 0xa1, 0x34, 0xf9 +.byte 0x36, 0x2c, 0x49, 0xdb, 0xf3, 0x46, 0xfc, 0xb3, 0x44, 0x69, 0x44, 0x13, 0x66, 0xfd, 0xd7, 0xc5 +.byte 0xfd, 0xaf, 0x36, 0x4d, 0xce, 0x03, 0x4d, 0x07, 0x71, 0xcf, 0xaf, 0x6a, 0x05, 0xd2, 0xa2, 0x43 +.byte 0x5a, 0x0a, 0x52, 0x6f, 0x01, 0x03, 0x4e, 0x8e, 0x8b, 0x7c, 0x00, 0x26, 0x02, 0x30, 0x7a, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61 +.byte 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x16, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65 +.byte 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd1, 0x2d, 0x8e, 0xbb, 0xb7, 0x36 +.byte 0xea, 0x6d, 0x37, 0x91, 0x9f, 0x4e, 0x93, 0xa7, 0x05, 0xe4, 0x29, 0x03, 0x25, 0xce, 0x1c, 0x82 +.byte 0xf7, 0x7c, 0x99, 0x9f, 0x41, 0x06, 0xcd, 0xed, 0xa3, 0xba, 0xc0, 0xdb, 0x09, 0x2c, 0xc1, 0x7c +.byte 0xdf, 0x29, 0x7e, 0x4b, 0x65, 0x2f, 0x93, 0xa7, 0xd4, 0x01, 0x6b, 0x03, 0x28, 0x18, 0xa3, 0xd8 +.byte 0x9d, 0x05, 0xc1, 0x2a, 0xd8, 0x45, 0xf1, 0x91, 0xde, 0xdf, 0x3b, 0xd0, 0x80, 0x02, 0x8c, 0xcf +.byte 0x38, 0x0f, 0xea, 0xa7, 0x5c, 0x78, 0x11, 0xa4, 0xc1, 0xc8, 0x85, 0x5c, 0x25, 0xd3, 0xd3, 0xb2 +.byte 0xe7, 0x25, 0xcf, 0x11, 0x54, 0x97, 0xab, 0x35, 0xc0, 0x1e, 0x76, 0x1c, 0xef, 0x00, 0x53, 0x9f +.byte 0x39, 0xdc, 0x14, 0xa5, 0x2c, 0x22, 0x25, 0xb3, 0x72, 0x72, 0xfc, 0x8d, 0xb3, 0xe5, 0x3e, 0x08 +.byte 0x1e, 0x14, 0x2a, 0x37, 0x0b, 0x88, 0x3c, 0xca, 0xb0, 0xf4, 0xc8, 0xc2, 0xa1, 0xae, 0xbc, 0xc1 +.byte 0xbe, 0x29, 0x67, 0x55, 0xe2, 0xfc, 0xad, 0x59, 0x5c, 0xfe, 0xbd, 0x57, 0x2c, 0xb0, 0x90, 0x8d +.byte 0xc2, 0xed, 0x37, 0xb6, 0x7c, 0x99, 0x88, 0xb5, 0xd5, 0x03, 0x9a, 0x3d, 0x15, 0x0d, 0x3d, 0x3a +.byte 0xa8, 0xa8, 0x45, 0xf0, 0x95, 0x4e, 0x25, 0x59, 0x1d, 0xcd, 0x98, 0x69, 0xbb, 0xd3, 0xcc, 0x32 +.byte 0xc9, 0x8d, 0xef, 0x81, 0xfe, 0xad, 0x7d, 0x89, 0xbb, 0xba, 0x60, 0x13, 0xca, 0x65, 0x95, 0x67 +.byte 0xa0, 0xf3, 0x19, 0xf6, 0x03, 0x56, 0xd4, 0x6a, 0xd3, 0x27, 0xe2, 0xa1, 0xad, 0x83, 0xf0, 0x4a +.byte 0x12, 0x22, 0x77, 0x1c, 0x05, 0x73, 0xe2, 0x19, 0x71, 0x42, 0xc0, 0xec, 0x75, 0x46, 0x9a, 0x90 +.byte 0x58, 0xe0, 0x6a, 0x8e, 0x2b, 0xa5, 0x46, 0x30, 0x04, 0x8e, 0x19, 0xb2, 0x17, 0xe3, 0xbe, 0xa9 +.byte 0xba, 0x7f, 0x56, 0xf1, 0x24, 0x03, 0xd7, 0xb2, 0x21, 0x28, 0x76, 0x0e, 0x36, 0x30, 0x4c, 0x79 +.byte 0xd5, 0x41, 0x9a, 0x9a, 0xa8, 0xb8, 0x35, 0xba, 0x0c, 0x3a, 0xf2, 0x44, 0x1b, 0x20, 0x88, 0xf7 +.byte 0xc5, 0x25, 0xd7, 0x3d, 0xc6, 0xe3, 0x3e, 0x43, 0xdd, 0x87, 0xfe, 0xc4, 0xea, 0xf5, 0x53, 0x3e +.byte 0x4c, 0x65, 0xff, 0x3b, 0x4a, 0xcb, 0x78, 0x5a, 0x6b, 0x17, 0x5f, 0x0d, 0xc7, 0xc3, 0x4f, 0x4e +.byte 0x9a, 0x2a, 0xa2, 0xed, 0x57, 0x4d, 0x22, 0xe2, 0x46, 0x9a, 0x3f, 0x0f, 0x91, 0x34, 0x24, 0x7d +.byte 0x55, 0xe3, 0x8c, 0x95, 0x37, 0xd3, 0x1a, 0xf0, 0x09, 0x2b, 0x2c, 0xd2, 0xc9, 0x8d, 0xb4, 0x0d +.byte 0x00, 0xab, 0x67, 0x29, 0x28, 0xd8, 0x01, 0xf5, 0x19, 0x04, 0xb6, 0x1d, 0xbe, 0x76, 0xfe, 0x72 +.byte 0x5c, 0xc4, 0x85, 0xca, 0xd2, 0x80, 0x41, 0xdf, 0x05, 0xa8, 0xa3, 0xd5, 0x84, 0x90, 0x4f, 0x0b +.byte 0xf3, 0xe0, 0x3f, 0x9b, 0x19, 0xd2, 0x37, 0x89, 0x3f, 0xf2, 0x7b, 0x52, 0x1c, 0x8c, 0xf6, 0xe1 +.byte 0xf7, 0x3c, 0x07, 0x97, 0x8c, 0x0e, 0xa2, 0x59, 0x81, 0x0c, 0xb2, 0x90, 0x3d, 0xd3, 0xe3, 0x59 +.byte 0x46, 0xed, 0x0f, 0xa9, 0xa7, 0xde, 0x80, 0x6b, 0x5a, 0xaa, 0x07, 0xb6, 0x19, 0xcb, 0xbc, 0x57 +.byte 0xf3, 0x97, 0x21, 0x7a, 0x0c, 0xb1, 0x2b, 0x74, 0x3e, 0xeb, 0xda, 0xa7, 0x67, 0x2d, 0x4c, 0xc4 +.byte 0x98, 0x9e, 0x36, 0x09, 0x76, 0x66, 0x66, 0xfc, 0x1a, 0x3f, 0xea, 0x48, 0x54, 0x1c, 0xbe, 0x30 +.byte 0xbd, 0x80, 0x50, 0xbf, 0x7c, 0xb5, 0xce, 0x00, 0xf6, 0x0c, 0x61, 0xd9, 0xe7, 0x24, 0x03, 0xe0 +.byte 0xe3, 0x01, 0x81, 0x0e, 0xbd, 0xd8, 0x85, 0x34, 0x88, 0xbd, 0xb2, 0x36, 0xa8, 0x7b, 0x5c, 0x08 +.byte 0xe5, 0x44, 0x80, 0x8c, 0x6f, 0xf8, 0x2f, 0xd5, 0x21, 0xca, 0x1d, 0x1c, 0xd0, 0xfb, 0xc4, 0xb5 +.byte 0x87, 0xd1, 0x3a, 0x4e, 0xc7, 0x76, 0xb5, 0x35, 0x48, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7d +.byte 0x00, 0x26, 0x01, 0x30, 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x12, 0x47, 0x72, 0x65 +.byte 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31 +.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72 +.byte 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x43, 0x6f, 0x6d, 0x6f +.byte 0x64, 0x6f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x21, 0x30 +.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73 +.byte 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01 +.byte 0x00, 0xbe, 0x40, 0x9d, 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c, 0x4d, 0x45, 0x44, 0x8e, 0xbe +.byte 0x46, 0xc8, 0x83, 0x06, 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e, 0xe4, 0x02, 0xfa, 0xf3, 0xab +.byte 0x5d, 0x50, 0x8a, 0x16, 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70, 0x22, 0xcd, 0x49, 0x2d, 0x54 +.byte 0x63, 0xcc, 0xb6, 0x6e, 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c, 0x24, 0xc0, 0xbc, 0x72, 0x4e +.byte 0xea, 0xf1, 0x15, 0xae, 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a, 0xb2, 0x33, 0x60, 0xe2, 0xda +.byte 0x89, 0x55, 0xf3, 0x22, 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83, 0x86, 0xa2, 0x8c, 0x94, 0x4f +.byte 0x9f, 0x68, 0xf2, 0x98, 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf, 0xe3, 0xcc, 0x35, 0x2c, 0x8b +.byte 0x5e, 0x07, 0x64, 0x65, 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9, 0x61, 0x9f, 0x76, 0x20, 0x50 +.byte 0xa8, 0x91, 0xc7, 0x66, 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0, 0x8a, 0x1a, 0x13, 0xea, 0x31 +.byte 0xa3, 0x1e, 0xa0, 0x99, 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58, 0x6f, 0x07, 0xf5, 0x6b, 0xb8 +.byte 0xfb, 0x14, 0x2b, 0xaf, 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73, 0x8c, 0xda, 0x05, 0x99, 0xa8 +.byte 0x38, 0xa8, 0xcb, 0x17, 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4, 0x78, 0x3a, 0x8d, 0xcf, 0x0f +.byte 0xd9, 0x42, 0xe2, 0x98, 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde, 0xef, 0x9f, 0x99, 0x49, 0xf1 +.byte 0x2d, 0xdf, 0xac, 0x74, 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5, 0x29, 0xd1, 0xf9, 0x90, 0x18 +.byte 0xc7, 0x62, 0x9c, 0xbe, 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25, 0xc7, 0xc0, 0xdd, 0x9d, 0xe6 +.byte 0x35, 0x68, 0x10, 0x20, 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84, 0x9c, 0x0d, 0x5e, 0xe8, 0x2f +.byte 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7e, 0x00, 0x78, 0x00, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55 +.byte 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28 +.byte 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86 +.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04 +.byte 0x45, 0x6e, 0xa9, 0x50, 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f, 0x28, 0x8d, 0x17, 0xcb, 0x96, 0x22 +.byte 0x64, 0x3f, 0xdc, 0x7a, 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2, 0x71, 0x24, 0xba, 0x8e, 0x49, 0xb9 +.byte 0x04, 0x1b, 0x47, 0x96, 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed, 0x9e, 0x08, 0x35, 0xc8, 0x27, 0xeb +.byte 0x89, 0x8c, 0x53, 0x58, 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b, 0x0f, 0x6b, 0x31, 0x52, 0x63, 0x41 +.byte 0x3b, 0x89, 0xcd, 0xec, 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34, 0x07, 0xdc, 0xbb, 0xc6, 0x06, 0x7f +.byte 0xc2, 0x45, 0x95, 0xec, 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09, 0xe9, 0x81, 0xfa, 0xf3, 0x47, 0xd3 +.byte 0x7e, 0x00, 0x26, 0x02, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65 +.byte 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f +.byte 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f +.byte 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31 +.byte 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f +.byte 0x6d, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52 +.byte 0x53, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xf9, 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb, 0xd0, 0x2a, 0xfe, 0xec, 0x67, 0x85 +.byte 0xa6, 0xe7, 0x2e, 0x1b, 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf, 0xa4, 0xec, 0xfa, 0x4a, 0x5d, 0x91 +.byte 0xc4, 0x57, 0x47, 0x6b, 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd, 0x93, 0xe4, 0x3d, 0x0f, 0xc2, 0x16 +.byte 0x9e, 0x0b, 0x66, 0xc3, 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85, 0xce, 0x56, 0xef, 0xf2, 0x16, 0xfd +.byte 0x00, 0x62, 0xf5, 0x22, 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e, 0x41, 0xb9, 0xe0, 0x4f, 0x46, 0x97 +.byte 0xaa, 0x1b, 0xc8, 0xb8, 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f, 0xdb, 0x2a, 0x02, 0x7e, 0xfc, 0x6c +.byte 0xca, 0xf3, 0x41, 0xd8, 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61, 0x48, 0xed, 0xb0, 0x03, 0x14, 0x1d +.byte 0x10, 0x0e, 0x4b, 0x19, 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65, 0xff, 0x36, 0xf3, 0x5e, 0x67, 0x02 +.byte 0x0b, 0x9d, 0x86, 0x55, 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe, 0xe2, 0x19, 0x00, 0xb7, 0x6f, 0xa1 +.byte 0x50, 0x62, 0x75, 0x74, 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92, 0xb4, 0x6e, 0x7a, 0x22, 0xc7, 0xf8 +.byte 0x1e, 0xa1, 0xe3, 0xb2, 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d, 0x04, 0xff, 0xa5, 0x4a, 0x04, 0x37 +.byte 0xe9, 0x85, 0xa4, 0x33, 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34, 0x7c, 0x19, 0xa4, 0x4a, 0x68, 0xc7 +.byte 0xb2, 0xa8, 0xd3, 0xb7, 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1, 0x97, 0xbc, 0x8c, 0xf9, 0x1d, 0xd9 +.byte 0x22, 0x84, 0x24, 0x74, 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29, 0x93, 0xcc, 0xeb, 0xb8, 0x5b, 0xe1 +.byte 0xfe, 0x5f, 0x25, 0xaa, 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54, 0x9d, 0x1b, 0x98, 0x11, 0xc3, 0x38 +.byte 0x9c, 0x7e, 0x3d, 0x86, 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c, 0x02, 0xf4, 0x5c, 0x02, 0x4f, 0x28 +.byte 0xcb, 0xae, 0x71, 0x9f, 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11, 0x25, 0x35, 0xea, 0xfc, 0xba, 0xc5 +.byte 0x60, 0x3d, 0xd9, 0x7c, 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75, 0x78, 0x03, 0x72, 0x22, 0xca, 0x3a +.byte 0xc3, 0x1f, 0xef, 0x2c, 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c, 0xb6, 0x51, 0x46, 0xfd, 0xaf, 0x03 +.byte 0xd6, 0xea, 0x60, 0x68, 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85, 0xe9, 0x1e, 0xc0, 0xb3, 0xdd, 0xc4 +.byte 0x24, 0xdc, 0x80, 0x2a, 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8, 0xe0, 0xc9, 0x81, 0x41, 0x00, 0x9e +.byte 0x5e, 0xbf, 0x7f, 0xc5, 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42, 0x40, 0xb3, 0xf9, 0x6f, 0x38, 0x27 +.byte 0x4b, 0x4e, 0x80, 0xf4, 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c, 0xea, 0x1c, 0xce, 0xb5, 0x75, 0x5c +.byte 0x51, 0x2e, 0x1c, 0x2b, 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00, 0xb5, 0xd1, 0x74, 0xc6, 0xd7, 0xe4 +.byte 0x9f, 0xad, 0x07, 0x93, 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37, 0xe4, 0xc3, 0xf6, 0x5d, 0x16, 0xbe +.byte 0x21, 0x73, 0xde, 0x92, 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc, 0x96, 0x92, 0x6a, 0x3e, 0xf8, 0xbc +.byte 0x65, 0x55, 0x9b, 0xde, 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc, 0x25, 0x1a, 0xa6, 0x25, 0x69, 0xcb +.byte 0xc2, 0x6d, 0xca, 0x7c, 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb, 0xef, 0x2e, 0xc8, 0xbc, 0xd7, 0x1b +.byte 0x59, 0x3c, 0x2b, 0xcc, 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27, 0x63, 0x19, 0xcf, 0xfc, 0xe9, 0x26 +.byte 0xf8, 0xca, 0x71, 0x9b, 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84, 0x4e, 0x99, 0xeb, 0xfc, 0xb3, 0x78 +.byte 0x09, 0x33, 0x70, 0xba, 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73, 0xeb, 0x1a, 0xa5, 0x0d, 0xc4, 0x22 +.byte 0x13, 0x20, 0x94, 0x56, 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1, 0xfd, 0xcf, 0x9c, 0x09, 0xba, 0xa2 +.byte 0x33, 0xed, 0x87, 0x02, 0x03, 0x01, 0x00, 0x01, 0x80, 0x00, 0x26, 0x01, 0x30, 0x7e, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65 +.byte 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x19, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65 +.byte 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe3, 0xfb, 0x7d +.byte 0xa3, 0x72, 0xba, 0xc2, 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b, 0x01, 0x4e, 0xe1, 0x6e, 0x40, 0x07 +.byte 0xba, 0x6d, 0x27, 0x5d, 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a, 0xc7, 0x51, 0x5f, 0xab, 0xa4, 0x32 +.byte 0xa6, 0x61, 0x87, 0xb6, 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02, 0x97, 0xf8, 0xd7, 0x69, 0x57, 0xa1 +.byte 0x18, 0x39, 0x5d, 0x6a, 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac, 0x3c, 0x31, 0x4a, 0x38, 0x7c, 0xd2 +.byte 0x04, 0xd2, 0x4b, 0x28, 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2, 0xcc, 0x4d, 0x73, 0xdb, 0xf3, 0xae +.byte 0x4f, 0xc7, 0x56, 0xd5, 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3, 0xab, 0x68, 0xd4, 0x23, 0x86, 0x59 +.byte 0x27, 0xcf, 0x09, 0x27, 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c, 0x30, 0x72, 0xdf, 0xe0, 0xa2, 0xe9 +.byte 0xd2, 0xe1, 0x74, 0x75, 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15, 0x54, 0x04, 0x1b, 0xd7, 0x43, 0x39 +.byte 0xad, 0x55, 0x28, 0xc5, 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4, 0xae, 0x38, 0x49, 0x33, 0xcc, 0x76 +.byte 0x85, 0x9f, 0x39, 0x45, 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c, 0x51, 0xf8, 0x7c, 0xe4, 0x2d, 0x7f +.byte 0xf5, 0xac, 0x5f, 0xeb, 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba, 0xcc, 0x91, 0x42, 0x77, 0x4c, 0x25 +.byte 0xc9, 0x90, 0x38, 0x6f, 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e, 0x97, 0x59, 0x3e, 0xd5, 0x60, 0x4e +.byte 0xe6, 0x05, 0x28, 0xed, 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48, 0xdb, 0x2f, 0xf9, 0x72, 0xd3, 0x39 +.byte 0xca, 0xfe, 0x1f, 0xd8, 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf, 0x31, 0x01, 0xc3, 0xec, 0xde, 0x11 +.byte 0x2d, 0x17, 0x5d, 0x1f, 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7, 0x69, 0xde, 0x07, 0x33, 0x28, 0xca +.byte 0x50, 0x95, 0xf9, 0xa7, 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45, 0xa9, 0xf9, 0x49, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x81, 0x00, 0x78, 0x00, 0x30, 0x7f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05 +.byte 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07 +.byte 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x31, 0x34, 0x30, 0x32, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2b, 0x53, 0x53, 0x4c, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xaa +.byte 0x12, 0x47, 0x90, 0x98, 0x1b, 0xfb, 0xef, 0xc3, 0x40, 0x07, 0x83, 0x20, 0x4e, 0xf1, 0x30, 0x82 +.byte 0xa2, 0x06, 0xd1, 0xf2, 0x92, 0x86, 0x61, 0xf2, 0xf6, 0x21, 0x68, 0xca, 0x00, 0xc4, 0xc7, 0xea +.byte 0x43, 0x00, 0x54, 0x86, 0xdc, 0xfd, 0x1f, 0xdf, 0x00, 0xb8, 0x41, 0x62, 0x5c, 0xdc, 0x70, 0x16 +.byte 0x32, 0xde, 0x1f, 0x99, 0xd4, 0xcc, 0xc5, 0x07, 0xc8, 0x08, 0x1f, 0x61, 0x16, 0x07, 0x51, 0x3d +.byte 0x7d, 0x5c, 0x07, 0x53, 0xe3, 0x35, 0x38, 0x8c, 0xdf, 0xcd, 0x9f, 0xd9, 0x2e, 0x0d, 0x4a, 0xb6 +.byte 0x19, 0x2e, 0x5a, 0x70, 0x5a, 0x06, 0xed, 0xbe, 0xf0, 0xa1, 0xb0, 0xca, 0xd0, 0x09, 0x29, 0x83 +.byte 0x00, 0x26, 0x02, 0x30, 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e +.byte 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69 +.byte 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x43, 0x65, 0x72, 0x74, 0x75 +.byte 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72 +.byte 0x6b, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbd, 0xf9, 0x78, 0xf8, 0xe6, 0xd5, 0x80, 0x0c, 0x64 +.byte 0x9d, 0x86, 0x1b, 0x96, 0x64, 0x67, 0x3f, 0x22, 0x3a, 0x1e, 0x75, 0x01, 0x7d, 0xef, 0xfb, 0x5c +.byte 0x67, 0x8c, 0xc9, 0xcc, 0x5c, 0x6b, 0xa9, 0x91, 0xe6, 0xb9, 0x42, 0xe5, 0x20, 0x4b, 0x9b, 0xda +.byte 0x9b, 0x7b, 0xb9, 0x99, 0x5d, 0xd9, 0x9b, 0x80, 0x4b, 0xd7, 0x84, 0x40, 0x2b, 0x27, 0xd3, 0xe8 +.byte 0xba, 0x30, 0xbb, 0x3e, 0x09, 0x1a, 0xa7, 0x49, 0x95, 0xef, 0x2b, 0x40, 0x24, 0xc2, 0x97, 0xc7 +.byte 0xa7, 0xee, 0x9b, 0x25, 0xef, 0xa8, 0x0a, 0x00, 0x97, 0x85, 0x5a, 0xaa, 0x9d, 0xdc, 0x29, 0xc9 +.byte 0xe2, 0x35, 0x07, 0xeb, 0x70, 0x4d, 0x4a, 0xd6, 0xc1, 0xb3, 0x56, 0xb8, 0xa1, 0x41, 0x38, 0x9b +.byte 0xd1, 0xfb, 0x31, 0x7f, 0x8f, 0xe0, 0x5f, 0xe1, 0xb1, 0x3f, 0x0f, 0x8e, 0x16, 0x49, 0x60, 0xd7 +.byte 0x06, 0x8d, 0x18, 0xf9, 0xaa, 0x26, 0x10, 0xab, 0x2a, 0xd3, 0xd0, 0xd1, 0x67, 0x8d, 0x1b, 0x46 +.byte 0xbe, 0x47, 0x30, 0xd5, 0x2e, 0x72, 0xd1, 0xc5, 0x63, 0xda, 0xe7, 0x63, 0x79, 0x44, 0x7e, 0x4b +.byte 0x63, 0x24, 0x89, 0x86, 0x2e, 0x34, 0x3f, 0x29, 0x4c, 0x52, 0x8b, 0x2a, 0xa7, 0xc0, 0xe2, 0x91 +.byte 0x28, 0x89, 0xb9, 0xc0, 0x5b, 0xf9, 0x1d, 0xd9, 0xe7, 0x27, 0xad, 0xff, 0x9a, 0x02, 0x97, 0xc1 +.byte 0xc6, 0x50, 0x92, 0x9b, 0x02, 0x2c, 0xbd, 0xa9, 0xb9, 0x34, 0x59, 0x0a, 0xbf, 0x84, 0x4a, 0xff +.byte 0xdf, 0xfe, 0xb3, 0x9f, 0xeb, 0xd9, 0x9e, 0xe0, 0x98, 0x23, 0xec, 0xa6, 0x6b, 0x77, 0x16, 0x2a +.byte 0xdb, 0xcc, 0xad, 0x3b, 0x1c, 0xa4, 0x87, 0xdc, 0x46, 0x73, 0x5e, 0x19, 0x62, 0x68, 0x45, 0x57 +.byte 0xe4, 0x90, 0x82, 0x42, 0xbb, 0x42, 0xd6, 0xf0, 0x61, 0xe0, 0xc1, 0xa3, 0x3d, 0x66, 0xa3, 0x5d +.byte 0xf4, 0x18, 0xee, 0x88, 0xc9, 0x8d, 0x17, 0x45, 0x29, 0x99, 0x32, 0x75, 0x02, 0x31, 0xee, 0x29 +.byte 0x26, 0xc8, 0x6b, 0x02, 0xe6, 0xb5, 0x62, 0x45, 0x7f, 0x37, 0x15, 0x5a, 0x23, 0x68, 0x89, 0xd4 +.byte 0x3e, 0xde, 0x4e, 0x27, 0xb0, 0xf0, 0x40, 0x0c, 0xbc, 0x4d, 0x17, 0xcb, 0x4d, 0xa2, 0xb3, 0x1e +.byte 0xd0, 0x06, 0x5a, 0xdd, 0xf6, 0x93, 0xcf, 0x57, 0x75, 0x99, 0xf5, 0xfa, 0x86, 0x1a, 0x67, 0x78 +.byte 0xb3, 0xbf, 0x96, 0xfe, 0x34, 0xdc, 0xbd, 0xe7, 0x52, 0x56, 0xe5, 0xb3, 0xe5, 0x75, 0x7b, 0xd7 +.byte 0x41, 0x91, 0x05, 0xdc, 0x5d, 0x69, 0xe3, 0x95, 0x0d, 0x43, 0xb9, 0xfc, 0x83, 0x96, 0x39, 0x95 +.byte 0x7b, 0x6c, 0x80, 0x5a, 0x4f, 0x13, 0x72, 0xc6, 0xd7, 0x7d, 0x29, 0x7a, 0x44, 0xba, 0x52, 0xa4 +.byte 0x2a, 0xd5, 0x41, 0x46, 0x09, 0x20, 0xfe, 0x22, 0xa0, 0xb6, 0x5b, 0x30, 0x8d, 0xbc, 0x89, 0x0c +.byte 0xd5, 0xd7, 0x70, 0xf8, 0x87, 0x52, 0xfd, 0xda, 0xef, 0xac, 0x51, 0x2e, 0x07, 0xb3, 0x4e, 0xfe +.byte 0xd0, 0x09, 0xda, 0x70, 0xef, 0x98, 0xfa, 0x56, 0xe6, 0x6d, 0xdb, 0xb5, 0x57, 0x4b, 0xdc, 0xe5 +.byte 0x2c, 0x25, 0x15, 0xc8, 0x9e, 0x2e, 0x78, 0x4e, 0xf8, 0xda, 0x9c, 0x9e, 0x86, 0x2c, 0xca, 0x57 +.byte 0xf3, 0x1a, 0xe5, 0xc8, 0x92, 0x8b, 0x1a, 0x82, 0x96, 0x7a, 0xc3, 0xbc, 0x50, 0x12, 0x69, 0xd8 +.byte 0x0e, 0x5a, 0x46, 0x8b, 0x3a, 0xeb, 0x26, 0xfa, 0x23, 0xc9, 0xb6, 0xb0, 0x81, 0xbe, 0x42, 0x00 +.byte 0xa4, 0xf8, 0xd6, 0xfe, 0x30, 0x2e, 0xc7, 0xd2, 0x46, 0xf6, 0xe5, 0x8e, 0x75, 0xfd, 0xf2, 0xcc +.byte 0xb9, 0xd0, 0x87, 0x5b, 0xcc, 0x06, 0x10, 0x60, 0xbb, 0x83, 0x35, 0xb7, 0x5e, 0x67, 0xde, 0x47 +.byte 0xec, 0x99, 0x48, 0xf1, 0xa4, 0xa1, 0x15, 0xfe, 0xad, 0x8c, 0x62, 0x8e, 0x39, 0x55, 0x4f, 0x39 +.byte 0x16, 0xb9, 0xb1, 0x63, 0x9d, 0xff, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x84, 0x00, 0x26, 0x01 +.byte 0x30, 0x81, 0x81, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42 +.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74 +.byte 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31 +.byte 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f +.byte 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x27, 0x30, 0x25, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x40, 0x8b, 0x8b, 0x72, 0xe3, 0x91, 0x1b, 0xf7, 0x51, 0xc1 +.byte 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1, 0xe6, 0x8a, 0x5d, 0x3b, 0x87, 0xfb, 0xbb, 0x88 +.byte 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0, 0xa2, 0x29, 0x50, 0x99, 0xae, 0xdb, 0x3b, 0xa1 +.byte 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42, 0x91, 0x4d, 0x41, 0xfe, 0xa9, 0xc8, 0xd8, 0x6a +.byte 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50, 0x5e, 0xb4, 0xd4, 0x2c, 0x70, 0x44, 0xcf, 0xda +.byte 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71, 0xb3, 0x52, 0xf0, 0x21, 0x4d, 0xa1, 0xd8, 0xba +.byte 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2, 0x83, 0x16, 0x98, 0xaa, 0x16, 0x7c, 0x43, 0x9b +.byte 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4, 0x62, 0x26, 0x18, 0x46, 0x9a, 0x3f, 0xeb, 0xc1 +.byte 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d, 0x8b, 0xdb, 0x72, 0x30, 0x6a, 0x66, 0xd5, 0xe0 +.byte 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04, 0x48, 0x89, 0x77, 0xde, 0xb5, 0xe9, 0xfb, 0x67 +.byte 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9, 0x62, 0x02, 0xf1, 0xb1, 0xa8, 0x3d, 0x6e, 0x37 +.byte 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b, 0xc6, 0xb8, 0x55, 0x43, 0x88, 0xe1, 0x23, 0x3e +.byte 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00, 0xd4, 0xa1, 0xb3, 0xa9, 0x25, 0xfe, 0x0d, 0x3f +.byte 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4, 0xda, 0xac, 0x38, 0xef, 0x55, 0x50, 0x24, 0x05 +.byte 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad, 0xc6, 0xd4, 0x21, 0x19, 0xd2, 0x8e, 0xca, 0x05 +.byte 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19, 0x12, 0xbd, 0x04, 0x4d, 0xce, 0x4e, 0x9c, 0xa5 +.byte 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81 +.byte 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b +.byte 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65 +.byte 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65 +.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73 +.byte 0x73, 0x20, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xaa, 0x5f, 0xda, 0x1b, 0x5f, 0xe8, 0x73, 0x91, 0xe5, 0xda, 0x5c, 0xf4 +.byte 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68, 0x55, 0x60, 0x05, 0x1d, 0x02, 0xa4, 0xb3, 0x9b, 0x59, 0xf3 +.byte 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc, 0x0d, 0xc2, 0xd9, 0x48, 0x19, 0xee, 0x69, 0x8f, 0xc9, 0x20 +.byte 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed, 0xb0, 0x5c, 0xac, 0x65, 0xc7, 0x5f, 0xed, 0x02, 0x7c, 0x7b +.byte 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9, 0x80, 0xc2, 0x18, 0x82, 0x16, 0x84, 0xfa, 0x66, 0xb0, 0x08 +.byte 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd, 0xb9, 0x49, 0x3f, 0xf6, 0x4f, 0x6e, 0x37, 0x48, 0x28, 0x38 +.byte 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70, 0xfd, 0x39, 0x97, 0x4d, 0xd2, 0xc7, 0x98, 0x91, 0x50, 0xaa +.byte 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39, 0x47, 0xe9, 0x52, 0x62, 0xd6, 0x12, 0x93, 0x5e, 0xb7, 0x31 +.byte 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7, 0x1e, 0xa3, 0xf5, 0xc2, 0xfc, 0xe9, 0x7a, 0xc5, 0x6c, 0xa9 +.byte 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc, 0x60, 0xaf, 0xc7, 0xde, 0xf4, 0xd9, 0xcb, 0xbe, 0x7e, 0x33 +.byte 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34, 0xfa, 0x21, 0xab, 0xea, 0x8e, 0x72, 0xa0, 0x3f, 0xa4, 0xde +.byte 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a, 0x95, 0x5b, 0x43, 0x44, 0xa8, 0x10, 0x15, 0x1c, 0xe5, 0x01 +.byte 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06, 0x28, 0x91, 0xaa, 0x20, 0xc5, 0xb7, 0x53, 0x26, 0x51, 0x43 +.byte 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1, 0xc0, 0x0f, 0x76, 0xd9, 0xc0, 0x8d, 0x7c, 0x81, 0xf3, 0x72 +.byte 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e, 0xd9, 0x5f, 0x35, 0xc6, 0xb2, 0x6f, 0x34, 0x7c, 0xbe, 0x48 +.byte 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8, 0x9d, 0x78, 0x9e, 0x9f, 0x86, 0x3e, 0x03, 0x5e, 0x19, 0x8b +.byte 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30 +.byte 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d +.byte 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72 +.byte 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20 +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73 +.byte 0x20, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xbd, 0x75, 0x93, 0xf0, 0x62, 0x22, 0x6f, 0x24, 0xae, 0xe0, 0x7a, 0x76, 0xac +.byte 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8, 0xb7, 0xfc, 0xcd, 0xf0, 0x42, 0xe0, 0xeb, 0x78, 0x88, 0x56 +.byte 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d, 0x0c, 0x8a, 0xf6, 0xd3, 0xcf, 0x70, 0xf4, 0x52, 0xb5, 0xd8 +.byte 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71, 0x41, 0x4a, 0x2b, 0xf0, 0x2a, 0x2c, 0x55, 0x03, 0xd6, 0x48 +.byte 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2, 0x5c, 0x3c, 0x3f, 0x44, 0xbc, 0x93, 0x3d, 0x61, 0xab, 0x4e +.byte 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27, 0x58, 0x0e, 0x44, 0x7f, 0x04, 0x1a, 0x87, 0xa5, 0xd7, 0x96 +.byte 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b, 0xa1, 0x75, 0xfb, 0x1a, 0x6b, 0x73, 0xb1, 0xf8, 0xce, 0xa9 +.byte 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3, 0x14, 0x44, 0xb8, 0x86, 0xa5, 0xf6, 0x8b, 0x2b, 0x39, 0xda +.byte 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72, 0x1a, 0xf7, 0x22, 0x15, 0x1c, 0x88, 0x91, 0x6b, 0x7f, 0x66 +.byte 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24, 0xf3, 0xdf, 0x86, 0x45, 0x88, 0xfd, 0x19, 0x7f, 0x75, 0x87 +.byte 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73, 0x24, 0x5b, 0xb9, 0x65, 0xe0, 0x2c, 0x54, 0xc8, 0x60, 0xd3 +.byte 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54, 0x33, 0x73, 0x91, 0x02, 0x3a, 0xa6, 0x7f, 0x7b, 0x76, 0x39 +.byte 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae, 0xb5, 0xc8, 0x93, 0x74, 0x1d, 0x9e, 0xb9, 0xb4, 0xe5, 0x60 +.byte 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb, 0x5e, 0x5b, 0x4c, 0x12, 0x70, 0x0c, 0x6c, 0x44, 0x20, 0xab +.byte 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2, 0x9c, 0x52, 0x37, 0xe7, 0xfa, 0xb6, 0xc2, 0x31, 0x3b, 0x4a +.byte 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a, 0xf5, 0x5d, 0x5f, 0xfa, 0x07, 0xb8, 0x7c, 0x0d, 0x1f, 0xd6 +.byte 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31 +.byte 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 +.byte 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x65, 0x2d, 0x53, 0x7a, 0x69 +.byte 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x30, 0x39 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16 +.byte 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x65, 0x2d, 0x73, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x2e, 0x68 +.byte 0x75, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xe9, 0xf8, 0x8f, 0xf3, 0x63, 0xad, 0xda, 0x86, 0xd8, 0xa7, 0xe0, 0x42, 0xfb, 0xcf +.byte 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99, 0xa5, 0x63, 0x70, 0xad, 0x9b, 0xae, 0xca, 0x33, 0x40, 0x7d +.byte 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44, 0xee, 0xe1, 0x13, 0x9d, 0x94, 0x42, 0x52, 0x9a, 0xbd, 0x75 +.byte 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d, 0x93, 0xb6, 0x18, 0xb7, 0x8c, 0x2c, 0xa8, 0xcf, 0xfb, 0x5c +.byte 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8, 0x7e, 0x8f, 0xe4, 0x2f, 0x1d, 0xb2, 0xa8, 0x75, 0x87, 0xd8 +.byte 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99, 0x4a, 0x46, 0xd0, 0x83, 0x19, 0x7d, 0xc0, 0xa1, 0x12, 0x1c +.byte 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7, 0xa5, 0x4d, 0x33, 0x2e, 0x85, 0x39, 0x40, 0x75, 0x7e, 0x14 +.byte 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7, 0x41, 0x67, 0xb8, 0xa0, 0x80, 0x61, 0x54, 0xa6, 0x6c, 0x4e +.byte 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9, 0xc9, 0xba, 0x33, 0xe7, 0xfe, 0xc0, 0x55, 0x28, 0x2c, 0x02 +.byte 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc, 0x55, 0x53, 0x03, 0x97, 0x7b, 0x07, 0x48, 0xff, 0x99, 0xfb +.byte 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc, 0x50, 0x10, 0x63, 0x8e, 0xaa, 0xa9, 0x1a, 0xb0, 0x84, 0x1a +.byte 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50, 0x6e, 0xa4, 0xd1, 0x0a, 0xcc, 0xd5, 0x71, 0x7e, 0x1f, 0xa7 +.byte 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22, 0x5f, 0xcb, 0x2b, 0xe6, 0xd4, 0x7c, 0x5d, 0xae, 0xd6, 0xc2 +.byte 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9, 0xed, 0x57, 0xfc, 0xc1, 0x23, 0x79, 0xfc, 0xfa, 0xc8, 0x24 +.byte 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51, 0x01, 0xd0, 0x77, 0xd6, 0xe9, 0x12, 0xa1, 0xf9, 0x1a, 0x83 +.byte 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97, 0xf4, 0x76, 0x06, 0x33, 0x43, 0x49, 0xa0, 0xff, 0x0b, 0xb5 +.byte 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x02, 0x30, 0x81, 0x82, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06 +.byte 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30 +.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70 +.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x32 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0x8f, 0x36, 0x65, 0x40, 0xe1, 0xd6, 0x4d, 0xc0, 0xd7, 0xb4, 0xe9, 0x46, 0xda, 0x6b, 0xea +.byte 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d, 0x7d, 0xbe, 0xbd, 0x2d, 0x3d, 0xf0, 0xdb, 0x78, 0xe1, 0x86 +.byte 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68, 0xed, 0x57, 0x3e, 0xa0, 0xd0, 0x08, 0x41, 0x83, 0xe7, 0x28 +.byte 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15, 0xd0, 0x01, 0x1a, 0xfb, 0x5e, 0x70, 0x23, 0xb2, 0xcb, 0x9f +.byte 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6, 0x92, 0x6d, 0x26, 0xc6, 0x7b, 0xbb, 0xb3, 0xda, 0x27, 0x9d +.byte 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05, 0xfe, 0xf0, 0x71, 0x71, 0xec, 0xc3, 0x1c, 0xe9, 0x63, 0xa2 +.byte 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67, 0xd3, 0x85, 0x55, 0x02, 0x02, 0xd6, 0x49, 0xc9, 0xcc, 0x5a +.byte 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f, 0xc9, 0xd4, 0x3b, 0x88, 0x41, 0xa8, 0x9c, 0xbd, 0xcb, 0xab +.byte 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2, 0x4c, 0x72, 0x90, 0xda, 0x2b, 0x08, 0xfc, 0xcf, 0x3c, 0x54 +.byte 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d, 0x96, 0x19, 0x0b, 0xc4, 0xe3, 0x72, 0xeb, 0xad, 0xd1, 0x7d +.byte 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10, 0xbf, 0x5b, 0xeb, 0x3b, 0xaf, 0xcf, 0x80, 0xdd, 0xc1, 0xd2 +.byte 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4, 0xa9, 0x3c, 0x38, 0x76, 0xa4, 0x62, 0x8e, 0xa0, 0x39, 0x5e +.byte 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59, 0x8f, 0x66, 0x2c, 0x3e, 0x07, 0xa2, 0xa3, 0x05, 0x26, 0x11 +.byte 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f, 0x96, 0x0b, 0x4b, 0xc8, 0x40, 0xe1, 0x50, 0xba, 0x2e, 0x8a +.byte 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7, 0x7f, 0x9a, 0x37, 0x13, 0xcd, 0xf2, 0x4d, 0x13, 0x6b, 0x21 +.byte 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1, 0x46, 0xf6, 0x44, 0x69, 0x9c, 0xca, 0x61, 0x35, 0x07, 0x00 +.byte 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea, 0xba, 0xb8, 0xf6, 0xe9, 0xb3, 0x60, 0xe5, 0x4d, 0xb9, 0xec +.byte 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58, 0xdb, 0xcd, 0x87, 0x69, 0xf8, 0x8a, 0x86, 0x12, 0x03, 0x47 +.byte 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77, 0x7d, 0x34, 0x24, 0x85, 0x83, 0xcd, 0xd7, 0xaa, 0x9c, 0x90 +.byte 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78, 0xb7, 0x64, 0xb8, 0xd8, 0xe8, 0xa6, 0xf4, 0x78, 0xb3, 0x55 +.byte 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78, 0xae, 0xa3, 0x8f, 0x61, 0xdd, 0xce, 0x08, 0x53, 0xad, 0xec +.byte 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d, 0xe6, 0x9f, 0x1a, 0x77, 0xce, 0x4c, 0x8f, 0xb8, 0x14, 0x15 +.byte 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06, 0x00, 0x66, 0x12, 0xe4, 0x59, 0x76, 0x5a, 0x53, 0xc0, 0x02 +.byte 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44, 0x7b, 0x8e, 0x79, 0xce, 0x33, 0x4a, 0x76, 0xaa, 0x5b, 0x81 +.byte 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0, 0x00, 0x7b, 0x5e, 0x62, 0xb4, 0x09, 0xd6, 0x86, 0x63, 0x0e +.byte 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28, 0x8b, 0x88, 0x93, 0xb2, 0x34, 0x1c, 0xd8, 0xa4, 0x55, 0x6e +.byte 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55, 0x3b, 0x23, 0xf4, 0x22, 0xe0, 0xf9, 0x29, 0x66, 0x26, 0xec +.byte 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b, 0x8f, 0xbe, 0xe5, 0x02, 0x60, 0x70, 0x41, 0x5e, 0xd4, 0xae +.byte 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb, 0xb2, 0x3b, 0x73, 0x74, 0x55, 0x47, 0x07, 0x79, 0x81, 0x39 +.byte 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04, 0x8a, 0xae, 0x96, 0x13, 0x25, 0x42, 0x0f, 0xb9, 0x53, 0xc4 +.byte 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde, 0x3c, 0xfa, 0xab, 0xd6, 0x06, 0x4a, 0x1f, 0x67, 0xa6, 0x98 +.byte 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc, 0x18, 0x95, 0x57, 0x66, 0xc6, 0xff, 0x5c, 0x8b, 0x56, 0xf5 +.byte 0x77, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x15, 0x77, 0x77, 0x77, 0x2e, 0x78, 0x72, 0x61, 0x6d, 0x70, 0x73, 0x65 +.byte 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x58, 0x52, 0x61, 0x6d, 0x70, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x49, 0x6e, 0x63 +.byte 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x58, 0x52, 0x61, 0x6d, 0x70 +.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30 +.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00 +.byte 0x98, 0x24, 0x1e, 0xbd, 0x15, 0xb4, 0xba, 0xdf, 0xc7, 0x8c, 0xa5, 0x27, 0xb6, 0x38, 0x0b, 0x69 +.byte 0xf3, 0xb6, 0x4e, 0xa8, 0x2c, 0x2e, 0x21, 0x1d, 0x5c, 0x44, 0xdf, 0x21, 0x5d, 0x7e, 0x23, 0x74 +.byte 0xfe, 0x5e, 0x7e, 0xb4, 0x4a, 0xb7, 0xa6, 0xad, 0x1f, 0xae, 0xe0, 0x06, 0x16, 0xe2, 0x9b, 0x5b +.byte 0xd9, 0x67, 0x74, 0x6b, 0x5d, 0x80, 0x8f, 0x29, 0x9d, 0x86, 0x1b, 0xd9, 0x9c, 0x0d, 0x98, 0x6d +.byte 0x76, 0x10, 0x28, 0x58, 0xe4, 0x65, 0xb0, 0x7f, 0x4a, 0x98, 0x79, 0x9f, 0xe0, 0xc3, 0x31, 0x7e +.byte 0x80, 0x2b, 0xb5, 0x8c, 0xc0, 0x40, 0x3b, 0x11, 0x86, 0xd0, 0xcb, 0xa2, 0x86, 0x36, 0x60, 0xa4 +.byte 0xd5, 0x30, 0x82, 0x6d, 0xd9, 0x6e, 0xd0, 0x0f, 0x12, 0x04, 0x33, 0x97, 0x5f, 0x4f, 0x61, 0x5a +.byte 0xf0, 0xe4, 0xf9, 0x91, 0xab, 0xe7, 0x1d, 0x3b, 0xbc, 0xe8, 0xcf, 0xf4, 0x6b, 0x2d, 0x34, 0x7c +.byte 0xe2, 0x48, 0x61, 0x1c, 0x8e, 0xf3, 0x61, 0x44, 0xcc, 0x6f, 0xa0, 0x4a, 0xa9, 0x94, 0xb0, 0x4d +.byte 0xda, 0xe7, 0xa9, 0x34, 0x7a, 0x72, 0x38, 0xa8, 0x41, 0xcc, 0x3c, 0x94, 0x11, 0x7d, 0xeb, 0xc8 +.byte 0xa6, 0x8c, 0xb7, 0x86, 0xcb, 0xca, 0x33, 0x3b, 0xd9, 0x3d, 0x37, 0x8b, 0xfb, 0x7a, 0x3e, 0x86 +.byte 0x2c, 0xe7, 0x73, 0xd7, 0x0a, 0x57, 0xac, 0x64, 0x9b, 0x19, 0xeb, 0xf4, 0x0f, 0x04, 0x08, 0x8a +.byte 0xac, 0x03, 0x17, 0x19, 0x64, 0xf4, 0x5a, 0x25, 0x22, 0x8d, 0x34, 0x2c, 0xb2, 0xf6, 0x68, 0x1d +.byte 0x12, 0x6d, 0xd3, 0x8a, 0x1e, 0x14, 0xda, 0xc4, 0x8f, 0xa6, 0xe2, 0x23, 0x85, 0xd5, 0x7a, 0x0d +.byte 0xbd, 0x6a, 0xe0, 0xe9, 0xec, 0xec, 0x17, 0xbb, 0x42, 0x1b, 0x67, 0xaa, 0x25, 0xed, 0x45, 0x83 +.byte 0x21, 0xfc, 0xc1, 0xc9, 0x7c, 0xd5, 0x62, 0x3e, 0xfa, 0xf2, 0xc5, 0x2d, 0xd3, 0xfd, 0xd4, 0x65 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x86, 0x00, 0x26, 0x01, 0x30, 0x81, 0x83, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65 +.byte 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44, 0x61, 0x64 +.byte 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65 +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30 +.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00 +.byte 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa, 0x59, 0x34, 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7, 0x80, 0x49 +.byte 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6, 0xc5, 0x20, 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6, 0x85, 0x49 +.byte 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b, 0x4e, 0xa0, 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32, 0x01, 0xb1 +.byte 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4, 0xfa, 0x4f, 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab, 0x19, 0x56 +.byte 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3, 0x16, 0x75, 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9, 0x35, 0xb6 +.byte 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13, 0xe4, 0xb6, 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2, 0xbe, 0x8a +.byte 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3, 0xb6, 0x19, 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8, 0x04, 0x94 +.byte 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3, 0x00, 0x66, 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36, 0x8c, 0x11 +.byte 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60, 0xb4, 0x38, 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd, 0x46, 0x07 +.byte 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c, 0xc8, 0x7c, 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92, 0x62, 0x69 +.byte 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44, 0x81, 0x8c, 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf, 0xac, 0x3a +.byte 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c, 0xa9, 0xe9, 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30, 0x0a, 0x39 +.byte 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b, 0x5d, 0xcc, 0x32, 0xec, 0x85, 0x62, 0x43, 0x25, 0x34, 0x02 +.byte 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b, 0x70, 0x2a, 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88, 0x01, 0x7d +.byte 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d, 0x60, 0x9d, 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8, 0x5f, 0x46 +.byte 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c, 0x09, 0xeb, 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3, 0xe0, 0x47 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x87, 0x00, 0x26, 0x02, 0x30, 0x81, 0x84, 0x31, 0x12, 0x30, 0x10 +.byte 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x47, 0x36, 0x33, 0x32, 0x38, 0x37, 0x35, 0x31, 0x30 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1e, 0x41, 0x4e, 0x46, 0x20, 0x41, 0x75, 0x74, 0x6f +.byte 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x0b, 0x41, 0x4e, 0x46, 0x20, 0x43, 0x41, 0x20, 0x52, 0x61, 0x69, 0x7a, 0x31, 0x22, 0x30, 0x20 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x41, 0x4e, 0x46, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xdb, 0xeb, 0x6b, 0x2b, 0xe6, 0x64, 0x54, 0x95, 0x82, 0x90, 0xa3, 0x72, 0xa4, 0x19, 0x01 +.byte 0x9d, 0x9c, 0x0b, 0x81, 0x5f, 0x73, 0x49, 0xba, 0xa7, 0xac, 0xf3, 0x04, 0x4e, 0x7b, 0x96, 0x0b +.byte 0xec, 0x11, 0xe0, 0x5b, 0xa6, 0x1c, 0xce, 0x1b, 0xd2, 0x0d, 0x83, 0x1c, 0x2b, 0xb8, 0x9e, 0x1d +.byte 0x7e, 0x45, 0x32, 0x60, 0x0f, 0x07, 0xe9, 0x77, 0x58, 0x7e, 0x9f, 0x6a, 0xc8, 0x61, 0x4e, 0xb6 +.byte 0x26, 0xc1, 0x4c, 0x8d, 0xff, 0x4c, 0xef, 0x34, 0xb2, 0x1f, 0x65, 0xd8, 0xb9, 0x78, 0xf5, 0xad +.byte 0xa9, 0x71, 0xb9, 0xef, 0x4f, 0x58, 0x1d, 0xa5, 0xde, 0x74, 0x20, 0x97, 0xa1, 0xed, 0x68, 0x4c +.byte 0xde, 0x92, 0x17, 0x4b, 0xbc, 0xab, 0xff, 0x65, 0x9a, 0x9e, 0xfb, 0x47, 0xd9, 0x57, 0x72, 0xf3 +.byte 0x09, 0xa1, 0xae, 0x76, 0x44, 0x13, 0x6e, 0x9c, 0x2d, 0x44, 0x39, 0xbc, 0xf9, 0xc7, 0x3b, 0xa4 +.byte 0x58, 0x3d, 0x41, 0xbd, 0xb4, 0xc2, 0x49, 0xa3, 0xc8, 0x0d, 0xd2, 0x97, 0x2f, 0x07, 0x65, 0x52 +.byte 0x00, 0xa7, 0x6e, 0xc8, 0xaf, 0x68, 0xec, 0xf4, 0x14, 0x96, 0xb6, 0x57, 0x1f, 0x56, 0xc3, 0x39 +.byte 0x9f, 0x2b, 0x6d, 0xe4, 0xf3, 0x3e, 0xf6, 0x35, 0x64, 0xda, 0x0c, 0x1c, 0xa1, 0x84, 0x4b, 0x2f +.byte 0x4b, 0x4b, 0xe2, 0x2c, 0x24, 0x9d, 0x6d, 0x93, 0x40, 0xeb, 0xb5, 0x23, 0x8e, 0x32, 0xca, 0x6f +.byte 0x45, 0xd3, 0xa8, 0x89, 0x7b, 0x1e, 0xcf, 0x1e, 0xfa, 0x5b, 0x43, 0x8b, 0xcd, 0xcd, 0xa8, 0x0f +.byte 0x6a, 0xca, 0x0c, 0x5e, 0xb9, 0x9e, 0x47, 0x8f, 0xf0, 0xd9, 0xb6, 0x0a, 0x0b, 0x58, 0x65, 0x17 +.byte 0x33, 0xb9, 0x23, 0xe4, 0x77, 0x19, 0x7d, 0xcb, 0x4a, 0x2e, 0x92, 0x7b, 0x4f, 0x2f, 0x10, 0x77 +.byte 0xb1, 0x8d, 0x2f, 0x68, 0x9c, 0x62, 0xcc, 0xe0, 0x50, 0xf8, 0xec, 0x91, 0xa7, 0x54, 0x4c, 0x57 +.byte 0x09, 0xd5, 0x76, 0x63, 0xc5, 0xe8, 0x65, 0x1e, 0xee, 0x6d, 0x6a, 0xcf, 0x09, 0x9d, 0xfa, 0x7c +.byte 0x4f, 0xad, 0x60, 0x08, 0xfd, 0x56, 0x99, 0x0f, 0x15, 0x2c, 0x7b, 0xa9, 0x80, 0xab, 0x8c, 0x61 +.byte 0x8f, 0x4a, 0x07, 0x76, 0x42, 0xde, 0x3d, 0xf4, 0xdd, 0xb2, 0x24, 0x33, 0x5b, 0xb8, 0xb5, 0xa3 +.byte 0x44, 0xc9, 0xac, 0x7f, 0x77, 0x3c, 0x1d, 0x23, 0xec, 0x82, 0xa9, 0xa6, 0xe2, 0xc8, 0x06, 0x4c +.byte 0x02, 0xfe, 0xac, 0x5c, 0x99, 0x99, 0x0b, 0x2f, 0x10, 0x8a, 0xa6, 0xf4, 0x7f, 0xd5, 0x87, 0x74 +.byte 0x0d, 0x59, 0x49, 0x45, 0xf6, 0xf0, 0x71, 0x5c, 0x39, 0x29, 0xd6, 0xbf, 0x4a, 0x23, 0x8b, 0xf5 +.byte 0x5f, 0x01, 0x63, 0xd2, 0x87, 0x73, 0x28, 0xb5, 0x4b, 0x0a, 0xf5, 0xf8, 0xab, 0x82, 0x2c, 0x7e +.byte 0x73, 0x25, 0x32, 0x1d, 0x0b, 0x63, 0x0a, 0x17, 0x81, 0x00, 0xff, 0xb6, 0x76, 0x5e, 0xe7, 0xb4 +.byte 0xb1, 0x40, 0xca, 0x21, 0xbb, 0xd5, 0x80, 0x51, 0xe5, 0x48, 0x52, 0x67, 0x2c, 0xd2, 0x61, 0x89 +.byte 0x07, 0x0d, 0x0f, 0xce, 0x42, 0x77, 0xc0, 0x44, 0x73, 0x9c, 0x44, 0x50, 0xa0, 0xdb, 0x10, 0x0a +.byte 0x2d, 0x95, 0x1c, 0x81, 0xaf, 0xe4, 0x1c, 0xe5, 0x14, 0x1e, 0xf1, 0x36, 0x41, 0x01, 0x02, 0x2f +.byte 0x7d, 0x73, 0xa7, 0xde, 0x42, 0xcc, 0x4c, 0xe9, 0x89, 0x0d, 0x56, 0xf7, 0x9f, 0x91, 0xd4, 0x03 +.byte 0xc6, 0x6c, 0xc9, 0x8f, 0xdb, 0xd8, 0x1c, 0xe0, 0x40, 0x98, 0x5d, 0x66, 0x99, 0x98, 0x80, 0x6e +.byte 0x2d, 0xff, 0x01, 0xc5, 0xce, 0xcb, 0x46, 0x1f, 0xac, 0x02, 0xc6, 0x43, 0xe6, 0xae, 0xa2, 0x84 +.byte 0x3c, 0xc5, 0x4e, 0x1e, 0x3d, 0x6d, 0xc9, 0x14, 0x4c, 0xe3, 0x2e, 0x41, 0xbb, 0xca, 0x39, 0xbf +.byte 0x36, 0x3c, 0x2a, 0x19, 0xaa, 0x41, 0x87, 0x4e, 0xa5, 0xce, 0x4b, 0x32, 0x79, 0xdd, 0x90, 0x49 +.byte 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x88, 0x00, 0x78, 0x00, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03 +.byte 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e +.byte 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22 +.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x03, 0x47, 0x7b, 0x2f, 0x75, 0xc9 +.byte 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4, 0x91, 0x16, 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e, 0x52, 0x0b +.byte 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97, 0xe1, 0x0a, 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee, 0x3d, 0xd2 +.byte 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75, 0xe4, 0xfa, 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03, 0x60, 0x4b +.byte 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad, 0x09, 0x71, 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4, 0xfe, 0x88 +.byte 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f, 0x09, 0x59, 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99, 0xe2, 0xc3 +.byte 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef, 0xb2, 0xd3, 0x06, 0xe9, 0x88, 0x00, 0x26, 0x02, 0x30, 0x81 +.byte 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b +.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72 +.byte 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30 +.byte 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43 +.byte 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x91, 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56, 0xb1, 0xac +.byte 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44, 0x67, 0x74, 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23, 0x70, 0x00 +.byte 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa, 0x2a, 0x12, 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd, 0x9f, 0x70 +.byte 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b, 0x0f, 0x17, 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61, 0xee, 0xff +.byte 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e, 0x0a, 0xfa, 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34, 0x7a, 0xd9 +.byte 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85, 0xa0, 0x82, 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7, 0xec, 0xfd +.byte 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf, 0xb0, 0x82, 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4, 0xa6, 0x2f +.byte 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc, 0x67, 0x43, 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89, 0xeb, 0x6b +.byte 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c, 0x14, 0xab, 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8, 0xa8, 0xe4 +.byte 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62, 0xb8, 0x55, 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6, 0x8b, 0xf3 +.byte 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c, 0x69, 0x99, 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5, 0xad, 0xe1 +.byte 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32, 0x96, 0x51, 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e, 0xb6, 0x6b +.byte 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0, 0xb1, 0x1f, 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4, 0x4e, 0xa9 +.byte 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb, 0xe8, 0xcc, 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72, 0x2a, 0x9b +.byte 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a, 0x5c, 0x22, 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee, 0xe0, 0x51 +.byte 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d, 0x3e, 0x99, 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33, 0x57, 0x41 +.byte 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6, 0x5c, 0xaf, 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8, 0x3f, 0xbc +.byte 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45, 0x99, 0xe2, 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9, 0x56, 0x3d +.byte 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58, 0xbe, 0xf0, 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9, 0x37, 0xfb +.byte 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9, 0xe8, 0x43, 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb, 0x13, 0xf1 +.byte 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8, 0x8c, 0x28, 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a, 0xe7, 0x71 +.byte 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9, 0x96, 0xa1, 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5, 0x0d, 0x22 +.byte 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56, 0x3b, 0xf6, 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2, 0x04, 0x22 +.byte 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8, 0x8e, 0x4c, 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70, 0x74, 0x02 +.byte 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69, 0x52, 0x02, 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55, 0x46, 0xbf +.byte 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70, 0xd0, 0xc3, 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47, 0xce, 0x28 +.byte 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82, 0x18, 0x27, 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50, 0xe6, 0x6b +.byte 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9, 0xa6, 0xdf, 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40, 0xdd, 0xfb +.byte 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33, 0x3a, 0x2e, 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63, 0xce, 0x18 +.byte 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a, 0xb7, 0x31, 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3, 0x79, 0x59 +.byte 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a, 0x98, 0xaa, 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b, 0x9d, 0xbb +.byte 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5, 0xed, 0x1d, 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc, 0xbf, 0xb3 +.byte 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x8b, 0x00, 0x26, 0x02 +.byte 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e +.byte 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x43, 0x68 +.byte 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x18 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e +.byte 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x28, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb9, 0x5d, 0x51, 0x28 +.byte 0x4b, 0x3c, 0x37, 0x92, 0xd1, 0x82, 0xce, 0xbd, 0x1d, 0xbd, 0xcd, 0xdd, 0xb8, 0xab, 0xcf, 0x0a +.byte 0x3e, 0xe1, 0x5d, 0xe5, 0xdc, 0xaa, 0x09, 0xb9, 0x57, 0x02, 0x3e, 0xe6, 0x63, 0x61, 0xdf, 0xf2 +.byte 0x0f, 0x82, 0x63, 0xae, 0xa3, 0xf7, 0xac, 0x73, 0xd1, 0x7c, 0xe7, 0xb3, 0x0b, 0xaf, 0x08, 0x00 +.byte 0x09, 0x59, 0x7f, 0xcd, 0x29, 0x2a, 0x88, 0x93, 0x87, 0x17, 0x18, 0x80, 0xed, 0x88, 0xb2, 0xb4 +.byte 0xb6, 0x10, 0x1f, 0x2d, 0xd6, 0x5f, 0x55, 0xa2, 0x13, 0x5d, 0xd1, 0xc6, 0xeb, 0x06, 0x56, 0x89 +.byte 0x88, 0xfe, 0xac, 0x32, 0x9d, 0xfd, 0x5c, 0xc3, 0x05, 0xc7, 0x6e, 0xee, 0x86, 0x89, 0xba, 0x88 +.byte 0x03, 0x9d, 0x72, 0x21, 0x86, 0x90, 0xae, 0x8f, 0x03, 0xa5, 0xdc, 0x9f, 0x88, 0x28, 0xcb, 0xa3 +.byte 0x92, 0x49, 0x0f, 0xec, 0xd0, 0x0f, 0xe2, 0x6d, 0x44, 0x4f, 0x80, 0x6a, 0xb2, 0xd4, 0xe7, 0xa0 +.byte 0x0a, 0x53, 0x01, 0xba, 0x8e, 0x97, 0x91, 0x76, 0x6e, 0xbc, 0xfc, 0xd5, 0x6b, 0x36, 0xe6, 0x40 +.byte 0x88, 0xd6, 0x7b, 0x2f, 0x5f, 0x05, 0xe8, 0x2c, 0x6d, 0x11, 0xf3, 0xe7, 0xb2, 0xbe, 0x92, 0x44 +.byte 0x4c, 0xd2, 0x97, 0xa4, 0xfe, 0xd2, 0x72, 0x81, 0x43, 0x07, 0x9c, 0xe9, 0x11, 0x3e, 0xf5, 0x8b +.byte 0x1a, 0x59, 0x7d, 0x1f, 0x68, 0x58, 0xdd, 0x04, 0x00, 0x2c, 0x96, 0xf3, 0x43, 0xb3, 0x7e, 0x98 +.byte 0x19, 0x74, 0xd9, 0x9c, 0x73, 0xd9, 0x18, 0xbe, 0x41, 0xc7, 0x34, 0x79, 0xd9, 0xf4, 0x62, 0xc2 +.byte 0x43, 0xb9, 0xb3, 0x27, 0xb0, 0x22, 0xcb, 0xf9, 0x3d, 0x52, 0xc7, 0x30, 0x47, 0xb3, 0xc9, 0x3e +.byte 0xb8, 0x6a, 0xe2, 0xe7, 0xe8, 0x81, 0x70, 0x5e, 0x42, 0x8b, 0x4f, 0x26, 0xa5, 0xfe, 0x3a, 0xc2 +.byte 0x20, 0x6e, 0xbb, 0xf8, 0x16, 0x8e, 0xcd, 0x0c, 0xa9, 0xb4, 0x1b, 0x6c, 0x76, 0x10, 0xe1, 0x58 +.byte 0x79, 0x46, 0x3e, 0x54, 0xce, 0x80, 0xa8, 0x57, 0x09, 0x37, 0x29, 0x1b, 0x99, 0x13, 0x8f, 0x0c +.byte 0xc8, 0xd6, 0x2c, 0x1c, 0xfb, 0x05, 0xe8, 0x08, 0x95, 0x3d, 0x65, 0x46, 0xdc, 0xee, 0xcd, 0x69 +.byte 0xe2, 0x4d, 0x8f, 0x87, 0x28, 0x4e, 0x34, 0x0b, 0x3e, 0xcf, 0x14, 0xd9, 0xbb, 0xdd, 0xb6, 0x50 +.byte 0x9a, 0xad, 0x77, 0xd4, 0x19, 0xd6, 0xda, 0x1a, 0x88, 0xc8, 0x4e, 0x1b, 0x27, 0x75, 0xd8, 0xb2 +.byte 0x08, 0xf1, 0xae, 0x83, 0x30, 0xb9, 0x11, 0x0e, 0xcd, 0x87, 0xf0, 0x84, 0x8d, 0x15, 0x72, 0x7c +.byte 0xa1, 0xef, 0xcc, 0xf2, 0x88, 0x61, 0xba, 0xf4, 0x69, 0xbb, 0x0c, 0x8c, 0x0b, 0x75, 0x57, 0x04 +.byte 0xb8, 0x4e, 0x2a, 0x14, 0x2e, 0x3d, 0x0f, 0x1c, 0x1e, 0x32, 0xa6, 0x62, 0x36, 0xee, 0x66, 0xe2 +.byte 0x22, 0xb8, 0x05, 0x40, 0x63, 0x10, 0x22, 0xf3, 0x33, 0x1d, 0x74, 0x72, 0x8a, 0x2c, 0xf5, 0x39 +.byte 0x29, 0xa0, 0xd3, 0xe7, 0x1b, 0x80, 0x84, 0x2d, 0xc5, 0x3d, 0xe3, 0x4d, 0xb1, 0xfd, 0x1a, 0x6f +.byte 0xba, 0x65, 0x07, 0x3b, 0x58, 0xec, 0x42, 0x45, 0x26, 0xfb, 0xd8, 0xda, 0x25, 0x72, 0xc4, 0xf6 +.byte 0x00, 0xb1, 0x22, 0x79, 0xbd, 0xe3, 0x7c, 0x59, 0x62, 0x4a, 0x9c, 0x05, 0x6f, 0x3d, 0xce, 0xe6 +.byte 0xd6, 0x47, 0x63, 0x99, 0xc6, 0x24, 0x6f, 0x72, 0x12, 0xc8, 0xac, 0x7f, 0x90, 0xb4, 0x0b, 0x91 +.byte 0x70, 0xe8, 0xb7, 0xe6, 0x16, 0x10, 0x71, 0x17, 0xce, 0xde, 0x06, 0x4f, 0x48, 0x41, 0x7d, 0x35 +.byte 0x4a, 0xa3, 0x89, 0xf2, 0xc9, 0x4b, 0x7b, 0x41, 0x11, 0x6d, 0x67, 0xb7, 0x08, 0x98, 0x4c, 0xe5 +.byte 0x11, 0x19, 0xae, 0x42, 0x80, 0xdc, 0xfb, 0x90, 0x05, 0xd4, 0xf8, 0x50, 0xca, 0xbe, 0xe4, 0xad +.byte 0xc7, 0xc2, 0x94, 0xd7, 0x16, 0x9d, 0xe6, 0x17, 0x8f, 0xaf, 0x36, 0xfb, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x8b, 0x00, 0x78, 0x00, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a +.byte 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79 +.byte 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55 +.byte 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b +.byte 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1a, 0xac, 0x54, 0x5a, 0xa9, 0xf9, 0x68, 0x23 +.byte 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a, 0xd8, 0x4b, 0xab, 0xc6, 0xd5, 0xb6, 0xd1, 0xe6 +.byte 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61, 0xfd, 0xdb, 0xa0, 0x89, 0x03, 0xb8, 0x05, 0x14 +.byte 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21, 0xb3, 0xce, 0xf7, 0xd4, 0x8a, 0x79, 0xe0, 0xa3 +.byte 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1, 0x99, 0xdc, 0x25, 0x91, 0x63, 0xab, 0x7f, 0x30 +.byte 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c, 0xf3, 0xbf, 0x2e, 0x5c, 0x53, 0xb1, 0x5f, 0xb3 +.byte 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79, 0x8b, 0x00, 0x26, 0x02, 0x30, 0x81, 0x88, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65 +.byte 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73 +.byte 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 +.byte 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20 +.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x80, 0x12, 0x65, 0x17, 0x36, 0x0e, 0xc3, 0xdb +.byte 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed, 0xcd, 0x27, 0xd3, 0x4c, 0xad, 0x50, 0x83, 0x61 +.byte 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09, 0xdc, 0xce, 0x89, 0x9f, 0xcc, 0x3d, 0xa9, 0xec +.byte 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6, 0x7b, 0x37, 0x28, 0x11, 0x2b, 0x47, 0xda, 0x39 +.byte 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd, 0x7d, 0x9d, 0xa3, 0x63, 0x42, 0xb6, 0x76, 0xf2 +.byte 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0, 0xec, 0x16, 0x20, 0x90, 0x09, 0x3e, 0xe2, 0xe8 +.byte 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64, 0xdb, 0x7f, 0xa3, 0x06, 0xf1, 0x88, 0x18, 0x6a +.byte 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87, 0x14, 0x7b, 0xf6, 0xe4, 0x1f, 0x8e, 0xd4, 0xe4 +.byte 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb, 0x86, 0x14, 0x54, 0x3f, 0xbc, 0x33, 0xfe, 0x7e +.byte 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51, 0x8e, 0x35, 0xa6, 0xa7, 0x66, 0xc8, 0x72, 0x67 +.byte 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03, 0xc0, 0x50, 0x3a, 0xe8, 0xcc, 0xf0, 0xdc, 0xbc +.byte 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f, 0x57, 0x5a, 0xb7, 0xff, 0xce, 0xf9, 0x3d, 0xb7 +.byte 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12, 0x3a, 0x4d, 0xae, 0x4c, 0x8a, 0xb7, 0x5c, 0x9a +.byte 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34, 0xae, 0x7e, 0x3b, 0x68, 0x66, 0x01, 0x44, 0xe7 +.byte 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7, 0x94, 0xbe, 0x53, 0x37, 0x90, 0x73, 0x43, 0xf3 +.byte 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74, 0x4e, 0x69, 0xc7, 0x6b, 0x8c, 0x60, 0x93, 0xde +.byte 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc, 0x93, 0x3b, 0x51, 0x78, 0x95, 0x67, 0x8b, 0xee +.byte 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b, 0x0f, 0xf3, 0x25, 0x26, 0x6b, 0x33, 0x6d, 0xf7 +.byte 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e, 0xa5, 0x66, 0xb1, 0x29, 0x7c, 0x32, 0x84, 0x63 +.byte 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30, 0x19, 0x13, 0xac, 0xd3, 0x7d, 0x37, 0xa7, 0xeb +.byte 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7, 0x12, 0xda, 0xa9, 0x49, 0x0b, 0xdf, 0xd8, 0x80 +.byte 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf, 0x25, 0x88, 0xcd, 0x84, 0xb8, 0xb1, 0x3f, 0xa4 +.byte 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c, 0x95, 0x7c, 0xf3, 0x6b, 0x05, 0xa9, 0x5e, 0x16 +.byte 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d, 0xcc, 0x5b, 0x82, 0xd3, 0x4c, 0xb3, 0xed, 0x5b +.byte 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d, 0x00, 0xbf, 0x35, 0x55, 0x74, 0x09, 0x49, 0xd8 +.byte 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51, 0x92, 0x0e, 0xf3, 0x26, 0x7d, 0x1c, 0x4d, 0x17 +.byte 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41, 0x5f, 0x40, 0xa9, 0x44, 0x44, 0xf4, 0x99, 0xe7 +.byte 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8, 0x3e, 0xfd, 0x74, 0x63, 0x2f, 0xb1, 0x50, 0x65 +.byte 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c, 0xb4, 0xf0, 0x25, 0x47, 0x59, 0xfa, 0x04, 0x1e +.byte 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2, 0xde, 0xbe, 0x78, 0xb7, 0xfc, 0x67, 0x15, 0xe1 +.byte 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9, 0x62, 0xba, 0xd6, 0x5f, 0x55, 0x2e, 0xea, 0x5c +.byte 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e, 0x2b, 0xa9, 0xf2, 0x4c, 0x97, 0x1c, 0x07, 0x3f +.byte 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x92, 0x00, 0x26 +.byte 0x01, 0x30, 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a +.byte 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63 +.byte 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63 +.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 +.byte 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69 +.byte 0x65, 0x6c, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d +.byte 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xbd, 0xed, 0xc1, 0x03, 0xfc, 0xf6, 0x8f, 0xfc, 0x02, 0xb1, 0x6f, 0x5b +.byte 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7, 0x03, 0x61, 0x56, 0x18, 0xc3, 0x47, 0xb6, 0xd7 +.byte 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1, 0x69, 0x9b, 0xde, 0x8a, 0x1a, 0xfd, 0x13, 0x20 +.byte 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd, 0xb9, 0xec, 0x8c, 0xdd, 0x22, 0xfa, 0x72, 0xdc +.byte 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec, 0x6e, 0x19, 0xb9, 0x89, 0x2c, 0xdc, 0x84, 0x5b +.byte 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5, 0x10, 0x52, 0x89, 0x46, 0x55, 0xf4, 0xb8, 0x75 +.byte 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8, 0x55, 0x72, 0x57, 0x02, 0x19, 0xf8, 0x17, 0x71 +.byte 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d, 0x48, 0xbe, 0x6c, 0xb4, 0xf4, 0xa4, 0xb0, 0xf3 +.byte 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e, 0x7f, 0xe1, 0x6d, 0x53, 0x4c, 0x62, 0xaf, 0xcd +.byte 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc, 0x79, 0x00, 0x98, 0x61, 0x74, 0xcf, 0x26, 0x82 +.byte 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d, 0x99, 0xca, 0xd4, 0x0e, 0x75, 0xcc, 0x37, 0xfb +.byte 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f, 0xb3, 0x5f, 0x65, 0x30, 0xf8, 0xa7, 0xb7, 0x4d +.byte 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8, 0x96, 0x56, 0x99, 0x8a, 0xb3, 0xf0, 0x7f, 0xa4 +.byte 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf, 0xe0, 0x5f, 0x11, 0xf8, 0x6b, 0xaa, 0x49, 0x5c +.byte 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b, 0x09, 0x76, 0xb5, 0x56, 0x62, 0xe1, 0x4b, 0x74 +.byte 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59, 0xd0, 0x98, 0x0e, 0x0e, 0xe6, 0xde, 0xfc, 0xc3 +.byte 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x94, 0x00, 0x5b, 0x00, 0x30, 0x81, 0x91 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30 +.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73 +.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61 +.byte 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c +.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x31 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x32, 0x35, 0x36, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 +.byte 0x79, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08 +.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x7e, 0xfb, 0x6c, 0xe6 +.byte 0x23, 0xe3, 0x73, 0x32, 0x08, 0xca, 0x60, 0xe6, 0x53, 0x9c, 0xba, 0x74, 0x8d, 0x18, 0xb0, 0x78 +.byte 0x90, 0x52, 0x80, 0xdd, 0x38, 0xc0, 0x4a, 0x1d, 0xd1, 0xa8, 0xcc, 0x93, 0xa4, 0x97, 0x06, 0x38 +.byte 0xca, 0x0d, 0x15, 0x62, 0xc6, 0x8e, 0x01, 0x2a, 0x65, 0x9d, 0xaa, 0xdf, 0x34, 0x91, 0x2e, 0x81 +.byte 0xc1, 0xe4, 0x33, 0x92, 0x31, 0xc4, 0xfd, 0x09, 0x3a, 0xa6, 0x3f, 0xad, 0x94, 0x00, 0x78, 0x00 +.byte 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e +.byte 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68 +.byte 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e +.byte 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02 +.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x6b, 0xda, 0x0d, 0x75 +.byte 0x35, 0x08, 0x31, 0x47, 0x05, 0xae, 0x45, 0x99, 0x55, 0xf1, 0x11, 0x13, 0x2e, 0x4a, 0xf8, 0x10 +.byte 0x31, 0x23, 0xa3, 0x7e, 0x83, 0xd3, 0x7f, 0x28, 0x08, 0x3a, 0x26, 0x1a, 0x3a, 0xcf, 0x97, 0x82 +.byte 0x1f, 0x80, 0xb7, 0x27, 0x09, 0x8f, 0xd1, 0x8e, 0x30, 0xc4, 0x0a, 0x9b, 0x0e, 0xac, 0x58, 0x04 +.byte 0xab, 0xf7, 0x36, 0x7d, 0x94, 0x23, 0xa4, 0x9b, 0x0a, 0x8a, 0x8b, 0xab, 0xeb, 0xfd, 0x39, 0x25 +.byte 0x66, 0xf1, 0x5e, 0xfe, 0x8c, 0xae, 0x8d, 0x41, 0x79, 0x9d, 0x09, 0x60, 0xce, 0x28, 0xa9, 0xd3 +.byte 0x8a, 0x6d, 0xf3, 0xd6, 0x45, 0xd4, 0xf2, 0x98, 0x84, 0x38, 0x65, 0xa0, 0x9b, 0x00, 0x26, 0x01 +.byte 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f +.byte 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f +.byte 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68 +.byte 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3b +.byte 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x32, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65 +.byte 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd5, 0x0c, 0x3a, 0xc4 +.byte 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97, 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f, 0x3f, 0xcb +.byte 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8, 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76, 0x38, 0x63 +.byte 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00, 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6, 0x87, 0xf9 +.byte 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a, 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d, 0x0d, 0x4e +.byte 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a, 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14, 0xeb, 0xcf +.byte 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e, 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47, 0x56, 0xff +.byte 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84, 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04, 0x68, 0x3a +.byte 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf, 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6, 0x00, 0x70 +.byte 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7, 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2, 0x60, 0xcf +.byte 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47, 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d, 0x02, 0xcf +.byte 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18, 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a, 0x6d, 0xa9 +.byte 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8, 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b, 0x8d, 0x25 +.byte 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32, 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e, 0x49, 0x43 +.byte 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61, 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf, 0x87, 0x2f +.byte 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54, 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f, 0xc4, 0x55 +.byte 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55, 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0xa9, 0x00, 0x26, 0x02, 0x30, 0x81, 0xa6, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06 +.byte 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d +.byte 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20 +.byte 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x40, 0x30, 0x3e +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20 +.byte 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73 +.byte 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f +.byte 0x6e, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc2 +.byte 0xf8, 0xa9, 0x3f, 0x1b, 0x89, 0xfc, 0x3c, 0x3c, 0x04, 0x5d, 0x3d, 0x90, 0x36, 0xb0, 0x91, 0x3a +.byte 0x79, 0x3c, 0x66, 0x5a, 0xef, 0x6d, 0x39, 0x01, 0x49, 0x1a, 0xb4, 0xb7, 0xcf, 0x7f, 0x4d, 0x23 +.byte 0x53, 0xb7, 0x90, 0x00, 0xe3, 0x13, 0x2a, 0x28, 0xa6, 0x31, 0xf1, 0x91, 0x00, 0xe3, 0x28, 0xec +.byte 0xae, 0x21, 0x41, 0xce, 0x1f, 0xda, 0xfd, 0x7d, 0x12, 0x5b, 0x01, 0x83, 0x0f, 0xb9, 0xb0, 0x5f +.byte 0x99, 0xe1, 0xf2, 0x12, 0x83, 0x80, 0x4d, 0x06, 0x3e, 0xdf, 0xac, 0xaf, 0xe7, 0xa1, 0x88, 0x6b +.byte 0x31, 0xaf, 0xf0, 0x8b, 0xd0, 0x18, 0x33, 0xb8, 0xdb, 0x45, 0x6a, 0x34, 0xf4, 0x02, 0x80, 0x24 +.byte 0x28, 0x0a, 0x02, 0x15, 0x95, 0x5e, 0x76, 0x2a, 0x0d, 0x99, 0x3a, 0x14, 0x5b, 0xf6, 0xcb, 0xcb +.byte 0x53, 0xbc, 0x13, 0x4d, 0x01, 0x88, 0x37, 0x94, 0x25, 0x1b, 0x42, 0xbc, 0x22, 0xd8, 0x8e, 0xa3 +.byte 0x96, 0x5e, 0x3a, 0xd9, 0x32, 0xdb, 0x3e, 0xe8, 0xf0, 0x10, 0x65, 0xed, 0x74, 0xe1, 0x2f, 0xa7 +.byte 0x7c, 0xaf, 0x27, 0x34, 0xbb, 0x29, 0x7d, 0x9b, 0xb6, 0xcf, 0x09, 0xc8, 0xe5, 0xd3, 0x0a, 0xfc +.byte 0x88, 0x65, 0x65, 0x74, 0x0a, 0xdc, 0x73, 0x1c, 0x5c, 0xcd, 0x40, 0xb1, 0x1c, 0xd4, 0xb6, 0x84 +.byte 0x8c, 0x4c, 0x50, 0xcf, 0x68, 0x8e, 0xa8, 0x59, 0xae, 0xc2, 0x27, 0x4e, 0x82, 0xa2, 0x35, 0xdd +.byte 0x14, 0xf4, 0x1f, 0xff, 0xb2, 0x77, 0xd5, 0x87, 0x2f, 0xaa, 0x6e, 0x7d, 0x24, 0x27, 0xe7, 0xc6 +.byte 0xcb, 0x26, 0xe6, 0xe5, 0xfe, 0x67, 0x07, 0x63, 0xd8, 0x45, 0x0d, 0xdd, 0x3a, 0x59, 0x65, 0x39 +.byte 0x58, 0x7a, 0x92, 0x99, 0x72, 0x3d, 0x9c, 0x84, 0x5e, 0x88, 0x21, 0xb8, 0xd5, 0xf4, 0x2c, 0xfc +.byte 0xd9, 0x70, 0x52, 0x4f, 0x78, 0xb8, 0xbd, 0x3c, 0x2b, 0x8b, 0x95, 0x98, 0xf5, 0xb3, 0xd1, 0x68 +.byte 0xcf, 0x20, 0x14, 0x7e, 0x4c, 0x5c, 0x5f, 0xe7, 0x8b, 0xe5, 0xf5, 0x35, 0x81, 0x19, 0x37, 0xd7 +.byte 0x11, 0x08, 0xb7, 0x66, 0xbe, 0xd3, 0x4a, 0xce, 0x83, 0x57, 0x00, 0x3a, 0xc3, 0x81, 0xf8, 0x17 +.byte 0xcb, 0x92, 0x36, 0x5d, 0xd1, 0xa3, 0xd8, 0x75, 0x1b, 0xe1, 0x8b, 0x27, 0xea, 0x7a, 0x48, 0x41 +.byte 0xfd, 0x45, 0x19, 0x06, 0xad, 0x27, 0x99, 0x4e, 0xc1, 0x70, 0x47, 0xdd, 0xb5, 0x9f, 0x81, 0x53 +.byte 0x12, 0xe5, 0xb1, 0x8c, 0x48, 0x5d, 0x31, 0x43, 0x17, 0xe3, 0x8c, 0xc6, 0x7a, 0x63, 0x96, 0x4b +.byte 0x29, 0x30, 0x4e, 0x84, 0x4e, 0x62, 0x19, 0x5e, 0x3c, 0xce, 0x97, 0x90, 0xa5, 0x7f, 0x01, 0xeb +.byte 0x9d, 0xe0, 0xf8, 0x8b, 0x89, 0xdd, 0x25, 0x98, 0x3d, 0x92, 0xb6, 0x7e, 0xef, 0xd9, 0xf1, 0x51 +.byte 0x51, 0x7d, 0x2d, 0x26, 0xc8, 0x69, 0x59, 0x61, 0xe0, 0xac, 0x6a, 0xb8, 0x2a, 0x36, 0x11, 0x04 +.byte 0x7a, 0x50, 0xbd, 0x32, 0x84, 0xbe, 0x2f, 0xdc, 0x72, 0xd5, 0xd7, 0x1d, 0x16, 0x47, 0xe4, 0x47 +.byte 0x66, 0x20, 0x3f, 0xf4, 0x96, 0xc5, 0xaf, 0x8e, 0x01, 0x7a, 0xa5, 0x0f, 0x7a, 0x64, 0xf5, 0x0d +.byte 0x18, 0x87, 0xd9, 0xae, 0x88, 0xd5, 0xfa, 0x84, 0xc1, 0x3a, 0xc0, 0x69, 0x28, 0x2d, 0xf2, 0x0d +.byte 0x68, 0x51, 0xaa, 0xe3, 0xa5, 0x77, 0xc6, 0xa4, 0x90, 0x0e, 0xa1, 0x37, 0x8b, 0x31, 0x23, 0x47 +.byte 0xc1, 0x09, 0x08, 0xeb, 0x6e, 0xf7, 0x78, 0x9b, 0xd7, 0x82, 0xfc, 0x84, 0x20, 0x99, 0x49, 0x19 +.byte 0xb6, 0x12, 0x46, 0xb1, 0xfb, 0x45, 0x55, 0x16, 0xa9, 0xa3, 0x65, 0xac, 0x9c, 0x07, 0x0f, 0xea +.byte 0x6b, 0xdc, 0x1f, 0x2e, 0x06, 0x72, 0xec, 0x86, 0x88, 0x12, 0xe4, 0x2d, 0xdb, 0x5f, 0x05, 0x2f +.byte 0xe4, 0xf0, 0x03, 0xd3, 0x26, 0x33, 0xe7, 0x80, 0xc2, 0xcd, 0x42, 0xa1, 0x17, 0x34, 0x0b, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0xaa, 0x00, 0x26, 0x01, 0x30, 0x81, 0xa7, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x15, 0x30, 0x13, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x4b, 0x66 +.byte 0x74, 0x2e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x2e, 0x54, 0x61, 0x6e +.byte 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x6b, 0x69, 0x61, 0x64, 0xc3 +.byte 0xb3, 0x6b, 0x20, 0x28, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x29, 0x31, 0x35, 0x30, 0x33, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x41, 0x72 +.byte 0x61, 0x6e, 0x79, 0x20, 0x28, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x29 +.byte 0x20, 0x46, 0xc5, 0x91, 0x74, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1 +.byte 0x6e, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xc4, 0x24, 0x5e, 0x73, 0xbe, 0x4b, 0x6d, 0x14, 0xc3, 0xa1, 0xf4, 0xe3, 0x97 +.byte 0x90, 0x6e, 0xd2, 0x30, 0x45, 0x1e, 0x3c, 0xee, 0x67, 0xd9, 0x64, 0xe0, 0x1a, 0x8a, 0x7f, 0xca +.byte 0x30, 0xca, 0x83, 0xe3, 0x20, 0xc1, 0xe3, 0xf4, 0x3a, 0xd3, 0x94, 0x5f, 0x1a, 0x7c, 0x5b, 0x6d +.byte 0xbf, 0x30, 0x4f, 0x84, 0x27, 0xf6, 0x9f, 0x1f, 0x49, 0xbc, 0xc6, 0x99, 0x0a, 0x90, 0xf2, 0x0f +.byte 0xf5, 0x7f, 0x43, 0x84, 0x37, 0x63, 0x51, 0x8b, 0x7a, 0xa5, 0x70, 0xfc, 0x7a, 0x58, 0xcd, 0x8e +.byte 0x9b, 0xed, 0xc3, 0x46, 0x6c, 0x84, 0x70, 0x5d, 0xda, 0xf3, 0x01, 0x90, 0x23, 0xfc, 0x4e, 0x30 +.byte 0xa9, 0x7e, 0xe1, 0x27, 0x63, 0xe7, 0xed, 0x64, 0x3c, 0xa0, 0xb8, 0xc9, 0x33, 0x63, 0xfe, 0x16 +.byte 0x90, 0xff, 0xb0, 0xb8, 0xfd, 0xd7, 0xa8, 0xc0, 0xc0, 0x94, 0x43, 0x0b, 0xb6, 0xd5, 0x59, 0xa6 +.byte 0x9e, 0x56, 0xd0, 0x24, 0x1f, 0x70, 0x79, 0xaf, 0xdb, 0x39, 0x54, 0x0d, 0x65, 0x75, 0xd9, 0x15 +.byte 0x41, 0x94, 0x01, 0xaf, 0x5e, 0xec, 0xf6, 0x8d, 0xf1, 0xff, 0xad, 0x64, 0xfe, 0x20, 0x9a, 0xd7 +.byte 0x5c, 0xeb, 0xfe, 0xa6, 0x1f, 0x08, 0x64, 0xa3, 0x8b, 0x76, 0x55, 0xad, 0x1e, 0x3b, 0x28, 0x60 +.byte 0x2e, 0x87, 0x25, 0xe8, 0xaa, 0xaf, 0x1f, 0xc6, 0x64, 0x46, 0x20, 0xb7, 0x70, 0x7f, 0x3c, 0xde +.byte 0x48, 0xdb, 0x96, 0x53, 0xb7, 0x39, 0x77, 0xe4, 0x1a, 0xe2, 0xc7, 0x16, 0x84, 0x76, 0x97, 0x5b +.byte 0x2f, 0xbb, 0x19, 0x15, 0x85, 0xf8, 0x69, 0x85, 0xf5, 0x99, 0xa7, 0xa9, 0xf2, 0x34, 0xa7, 0xa9 +.byte 0xb6, 0xa6, 0x03, 0xfc, 0x6f, 0x86, 0x3d, 0x54, 0x7c, 0x76, 0x04, 0x9b, 0x6b, 0xf9, 0x40, 0x5d +.byte 0x00, 0x34, 0xc7, 0x2e, 0x99, 0x75, 0x9d, 0xe5, 0x88, 0x03, 0xaa, 0x4d, 0xf8, 0x03, 0xd2, 0x42 +.byte 0x76, 0xc0, 0x1b, 0x02, 0x03, 0x00, 0xa8, 0x8b, 0xad, 0x00, 0x78, 0x00, 0x30, 0x81, 0xaa, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30 +.byte 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63 +.byte 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65 +.byte 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x3b, 0x48, 0x65 +.byte 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20 +.byte 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73 +.byte 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0x92, 0xa0, 0x41, 0xe8, 0x4b, 0x82, 0x84, 0x5c, 0xe2, 0xf8, 0x31, 0x11, 0x99, 0x86, 0x64 +.byte 0x4e, 0x09, 0x25, 0x2f, 0x9d, 0x41, 0x2f, 0x0a, 0xae, 0x35, 0x4f, 0x74, 0x95, 0xb2, 0x51, 0x64 +.byte 0x6b, 0x8d, 0x6b, 0xe6, 0x3f, 0x70, 0x95, 0xf0, 0x05, 0x44, 0x47, 0xa6, 0x72, 0x38, 0x50, 0x76 +.byte 0x95, 0x02, 0x5a, 0x8e, 0xae, 0x28, 0x9e, 0xf9, 0x2d, 0x4e, 0x99, 0xef, 0x2c, 0x48, 0x6f, 0x4c +.byte 0x25, 0x29, 0xe8, 0xd1, 0x71, 0x5b, 0xdf, 0x1d, 0xc1, 0x75, 0x37, 0xb4, 0xd7, 0xfa, 0x7b, 0x7a +.byte 0x42, 0x9c, 0x6a, 0x0a, 0x56, 0x5a, 0x7c, 0x69, 0x0b, 0xaa, 0x80, 0x09, 0x24, 0x6c, 0x7e, 0xc1 +.byte 0x46, 0xb3, 0x00, 0x26, 0x01, 0x30, 0x81, 0xb0, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d +.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30 +.byte 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72 +.byte 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x20, 0x69, 0x73, 0x20, 0x69 +.byte 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72 +.byte 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x16, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x36, 0x20, 0x45, 0x6e, 0x74, 0x72 +.byte 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x24, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb6, 0x95, 0xb6, 0x43, 0x42, 0xfa, 0xc6 +.byte 0x6d, 0x2a, 0x6f, 0x48, 0xdf, 0x94, 0x4c, 0x39, 0x57, 0x05, 0xee, 0xc3, 0x79, 0x11, 0x41, 0x68 +.byte 0x36, 0xed, 0xec, 0xfe, 0x9a, 0x01, 0x8f, 0xa1, 0x38, 0x28, 0xfc, 0xf7, 0x10, 0x46, 0x66, 0x2e +.byte 0x4d, 0x1e, 0x1a, 0xb1, 0x1a, 0x4e, 0xc6, 0xd1, 0xc0, 0x95, 0x88, 0xb0, 0xc9, 0xff, 0x31, 0x8b +.byte 0x33, 0x03, 0xdb, 0xb7, 0x83, 0x7b, 0x3e, 0x20, 0x84, 0x5e, 0xed, 0xb2, 0x56, 0x28, 0xa7, 0xf8 +.byte 0xe0, 0xb9, 0x40, 0x71, 0x37, 0xc5, 0xcb, 0x47, 0x0e, 0x97, 0x2a, 0x68, 0xc0, 0x22, 0x95, 0x62 +.byte 0x15, 0xdb, 0x47, 0xd9, 0xf5, 0xd0, 0x2b, 0xff, 0x82, 0x4b, 0xc9, 0xad, 0x3e, 0xde, 0x4c, 0xdb +.byte 0x90, 0x80, 0x50, 0x3f, 0x09, 0x8a, 0x84, 0x00, 0xec, 0x30, 0x0a, 0x3d, 0x18, 0xcd, 0xfb, 0xfd +.byte 0x2a, 0x59, 0x9a, 0x23, 0x95, 0x17, 0x2c, 0x45, 0x9e, 0x1f, 0x6e, 0x43, 0x79, 0x6d, 0x0c, 0x5c +.byte 0x98, 0xfe, 0x48, 0xa7, 0xc5, 0x23, 0x47, 0x5c, 0x5e, 0xfd, 0x6e, 0xe7, 0x1e, 0xb4, 0xf6, 0x68 +.byte 0x45, 0xd1, 0x86, 0x83, 0x5b, 0xa2, 0x8a, 0x8d, 0xb1, 0xe3, 0x29, 0x80, 0xfe, 0x25, 0x71, 0x88 +.byte 0xad, 0xbe, 0xbc, 0x8f, 0xac, 0x52, 0x96, 0x4b, 0xaa, 0x51, 0x8d, 0xe4, 0x13, 0x31, 0x19, 0xe8 +.byte 0x4e, 0x4d, 0x9f, 0xdb, 0xac, 0xb3, 0x6a, 0xd5, 0xbc, 0x39, 0x54, 0x71, 0xca, 0x7a, 0x7a, 0x7f +.byte 0x90, 0xdd, 0x7d, 0x1d, 0x80, 0xd9, 0x81, 0xbb, 0x59, 0x26, 0xc2, 0x11, 0xfe, 0xe6, 0x93, 0xe2 +.byte 0xf7, 0x80, 0xe4, 0x65, 0xfb, 0x34, 0x37, 0x0e, 0x29, 0x80, 0x70, 0x4d, 0xaf, 0x38, 0x86, 0x2e +.byte 0x9e, 0x7f, 0x57, 0xaf, 0x9e, 0x17, 0xae, 0xeb, 0x1c, 0xcb, 0x28, 0x21, 0x5f, 0xb6, 0x1c, 0xd8 +.byte 0xe7, 0xa2, 0x04, 0x22, 0xf9, 0xd3, 0xda, 0xd8, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0xb7, 0x00 +.byte 0x26, 0x01, 0x30, 0x81, 0xb4, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b +.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x40, 0x30, 0x3e, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x14, 0x37, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73 +.byte 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x5f, 0x32, 0x30, 0x34, 0x38, 0x20, 0x69 +.byte 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x2e, 0x20, 0x28 +.byte 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x20, 0x6c, 0x69, 0x61, 0x62, 0x2e, 0x29, 0x31, 0x25, 0x30 +.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1c, 0x28, 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x39 +.byte 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x4c, 0x69, 0x6d +.byte 0x69, 0x74, 0x65, 0x64, 0x31, 0x33, 0x30, 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45 +.byte 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x28, 0x32, 0x30, 0x34, 0x38, 0x29, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xad, 0x4d, 0x4b, 0xa9, 0x12, 0x86 +.byte 0xb2, 0xea, 0xa3, 0x20, 0x07, 0x15, 0x16, 0x64, 0x2a, 0x2b, 0x4b, 0xd1, 0xbf, 0x0b, 0x4a, 0x4d +.byte 0x8e, 0xed, 0x80, 0x76, 0xa5, 0x67, 0xb7, 0x78, 0x40, 0xc0, 0x73, 0x42, 0xc8, 0x68, 0xc0, 0xdb +.byte 0x53, 0x2b, 0xdd, 0x5e, 0xb8, 0x76, 0x98, 0x35, 0x93, 0x8b, 0x1a, 0x9d, 0x7c, 0x13, 0x3a, 0x0e +.byte 0x1f, 0x5b, 0xb7, 0x1e, 0xcf, 0xe5, 0x24, 0x14, 0x1e, 0xb1, 0x81, 0xa9, 0x8d, 0x7d, 0xb8, 0xcc +.byte 0x6b, 0x4b, 0x03, 0xf1, 0x02, 0x0c, 0xdc, 0xab, 0xa5, 0x40, 0x24, 0x00, 0x7f, 0x74, 0x94, 0xa1 +.byte 0x9d, 0x08, 0x29, 0xb3, 0x88, 0x0b, 0xf5, 0x87, 0x77, 0x9d, 0x55, 0xcd, 0xe4, 0xc3, 0x7e, 0xd7 +.byte 0x6a, 0x64, 0xab, 0x85, 0x14, 0x86, 0x95, 0x5b, 0x97, 0x32, 0x50, 0x6f, 0x3d, 0xc8, 0xba, 0x66 +.byte 0x0c, 0xe3, 0xfc, 0xbd, 0xb8, 0x49, 0xc1, 0x76, 0x89, 0x49, 0x19, 0xfd, 0xc0, 0xa8, 0xbd, 0x89 +.byte 0xa3, 0x67, 0x2f, 0xc6, 0x9f, 0xbc, 0x71, 0x19, 0x60, 0xb8, 0x2d, 0xe9, 0x2c, 0xc9, 0x90, 0x76 +.byte 0x66, 0x7b, 0x94, 0xe2, 0xaf, 0x78, 0xd6, 0x65, 0x53, 0x5d, 0x3c, 0xd6, 0x9c, 0xb2, 0xcf, 0x29 +.byte 0x03, 0xf9, 0x2f, 0xa4, 0x50, 0xb2, 0xd4, 0x48, 0xce, 0x05, 0x32, 0x55, 0x8a, 0xfd, 0xb2, 0x64 +.byte 0x4c, 0x0e, 0xe4, 0x98, 0x07, 0x75, 0xdb, 0x7f, 0xdf, 0xb9, 0x08, 0x55, 0x60, 0x85, 0x30, 0x29 +.byte 0xf9, 0x7b, 0x48, 0xa4, 0x69, 0x86, 0xe3, 0x35, 0x3f, 0x1e, 0x86, 0x5d, 0x7a, 0x7a, 0x15, 0xbd +.byte 0xef, 0x00, 0x8e, 0x15, 0x22, 0x54, 0x17, 0x00, 0x90, 0x26, 0x93, 0xbc, 0x0e, 0x49, 0x68, 0x91 +.byte 0xbf, 0xf8, 0x47, 0xd3, 0x9d, 0x95, 0x42, 0xc1, 0x0e, 0x4d, 0xdf, 0x6f, 0x26, 0xcf, 0xc3, 0x18 +.byte 0x21, 0x62, 0x66, 0x43, 0x70, 0xd6, 0xd5, 0xc0, 0x07, 0xe1, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc1 +.byte 0x00, 0x26, 0x01, 0x30, 0x81, 0xbe, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e +.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e +.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d +.byte 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30 +.byte 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x39, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79 +.byte 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x45, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20 +.byte 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a +.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xba, 0x84, 0xb6, 0x72, 0xdb, 0x9e, 0x0c, 0x6b, 0xe2, 0x99, 0xe9 +.byte 0x30, 0x01, 0xa7, 0x76, 0xea, 0x32, 0xb8, 0x95, 0x41, 0x1a, 0xc9, 0xda, 0x61, 0x4e, 0x58, 0x72 +.byte 0xcf, 0xfe, 0xf6, 0x82, 0x79, 0xbf, 0x73, 0x61, 0x06, 0x0a, 0xa5, 0x27, 0xd8, 0xb3, 0x5f, 0xd3 +.byte 0x45, 0x4e, 0x1c, 0x72, 0xd6, 0x4e, 0x32, 0xf2, 0x72, 0x8a, 0x0f, 0xf7, 0x83, 0x19, 0xd0, 0x6a +.byte 0x80, 0x80, 0x00, 0x45, 0x1e, 0xb0, 0xc7, 0xe7, 0x9a, 0xbf, 0x12, 0x57, 0x27, 0x1c, 0xa3, 0x68 +.byte 0x2f, 0x0a, 0x87, 0xbd, 0x6a, 0x6b, 0x0e, 0x5e, 0x65, 0xf3, 0x1c, 0x77, 0xd5, 0xd4, 0x85, 0x8d +.byte 0x70, 0x21, 0xb4, 0xb3, 0x32, 0xe7, 0x8b, 0xa2, 0xd5, 0x86, 0x39, 0x02, 0xb1, 0xb8, 0xd2, 0x47 +.byte 0xce, 0xe4, 0xc9, 0x49, 0xc4, 0x3b, 0xa7, 0xde, 0xfb, 0x54, 0x7d, 0x57, 0xbe, 0xf0, 0xe8, 0x6e +.byte 0xc2, 0x79, 0xb2, 0x3a, 0x0b, 0x55, 0xe2, 0x50, 0x98, 0x16, 0x32, 0x13, 0x5c, 0x2f, 0x78, 0x56 +.byte 0xc1, 0xc2, 0x94, 0xb3, 0xf2, 0x5a, 0xe4, 0x27, 0x9a, 0x9f, 0x24, 0xd7, 0xc6, 0xec, 0xd0, 0x9b +.byte 0x25, 0x82, 0xe3, 0xcc, 0xc2, 0xc4, 0x45, 0xc5, 0x8c, 0x97, 0x7a, 0x06, 0x6b, 0x2a, 0x11, 0x9f +.byte 0xa9, 0x0a, 0x6e, 0x48, 0x3b, 0x6f, 0xdb, 0xd4, 0x11, 0x19, 0x42, 0xf7, 0x8f, 0x07, 0xbf, 0xf5 +.byte 0x53, 0x5f, 0x9c, 0x3e, 0xf4, 0x17, 0x2c, 0xe6, 0x69, 0xac, 0x4e, 0x32, 0x4c, 0x62, 0x77, 0xea +.byte 0xb7, 0xe8, 0xe5, 0xbb, 0x34, 0xbc, 0x19, 0x8b, 0xae, 0x9c, 0x51, 0xe7, 0xb7, 0x7e, 0xb5, 0x53 +.byte 0xb1, 0x33, 0x22, 0xe5, 0x6d, 0xcf, 0x70, 0x3c, 0x1a, 0xfa, 0xe2, 0x9b, 0x67, 0xb6, 0x83, 0xf4 +.byte 0x8d, 0xa5, 0xaf, 0x62, 0x4c, 0x4d, 0xe0, 0x58, 0xac, 0x64, 0x34, 0x12, 0x03, 0xf8, 0xb6, 0x8d +.byte 0x94, 0x63, 0x24, 0xa4, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc2, 0x00, 0x78, 0x00, 0x30, 0x81 +.byte 0xbf, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16 +.byte 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73 +.byte 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32 +.byte 0x30, 0x31, 0x32, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a +.byte 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x33, 0x30, 0x31, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x45, 0x43, 0x31 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x84, 0x13, 0xc9, 0xd0, 0xba, 0x6d, 0x41, 0x7b +.byte 0xe2, 0x6c, 0xd0, 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a, 0x24, 0xf4, 0x5b, 0x89, 0x69, 0x47, 0xe3 +.byte 0xb8, 0xc2, 0x7d, 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0, 0xf6, 0x5b, 0xd5, 0x8b, 0x06, 0x19, 0x86 +.byte 0x4f, 0x53, 0x10, 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0, 0xf8, 0xd5, 0x47, 0x19, 0x61, 0x4c, 0x7d +.byte 0xca, 0x93, 0x27, 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96, 0x09, 0xfe, 0x63, 0xec, 0x70, 0x5d, 0x36 +.byte 0xad, 0x67, 0x77, 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44, 0x3a, 0xa2, 0x63, 0x51, 0x1f, 0xf5, 0xe3 +.byte 0x62, 0xd4, 0xa9, 0x47, 0x07, 0x3e, 0xcc, 0x20, 0xd5, 0x00, 0x26, 0x01, 0x30, 0x81, 0xd2, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x18, 0x30, 0x16 +.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0f, 0x47, 0x65, 0x62, 0x7a, 0x65, 0x20, 0x2d, 0x20, 0x4b +.byte 0x6f, 0x63, 0x61, 0x65, 0x6c, 0x69, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x39, 0x54, 0x75, 0x72, 0x6b, 0x69, 0x79, 0x65, 0x20, 0x42, 0x69, 0x6c, 0x69, 0x6d, 0x73, 0x65 +.byte 0x6c, 0x20, 0x76, 0x65, 0x20, 0x54, 0x65, 0x6b, 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6b, 0x20 +.byte 0x41, 0x72, 0x61, 0x73, 0x74, 0x69, 0x72, 0x6d, 0x61, 0x20, 0x4b, 0x75, 0x72, 0x75, 0x6d, 0x75 +.byte 0x20, 0x2d, 0x20, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x24, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65, 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x20 +.byte 0x2d, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x2d, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x20, 0x4b, 0x61, 0x6d, 0x75 +.byte 0x20, 0x53, 0x4d, 0x20, 0x53, 0x53, 0x4c, 0x20, 0x4b, 0x6f, 0x6b, 0x20, 0x53, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x69, 0x20, 0x2d, 0x20, 0x53, 0x75, 0x72, 0x75, 0x6d, 0x20 +.byte 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xaf, 0x75, 0x30, 0x33, 0xaa, 0xbb, 0x6b, 0xd3, 0x99, 0x2c, 0x12, 0x37, 0x84, 0xd9 +.byte 0x8d, 0x7b, 0x97, 0x80, 0xd3, 0x6e, 0xe7, 0xff, 0x9b, 0x50, 0x95, 0x3e, 0x90, 0x95, 0x56, 0x42 +.byte 0xd7, 0x19, 0x7c, 0x26, 0x84, 0x8d, 0x92, 0xfa, 0x01, 0x1d, 0x3a, 0x0f, 0xe2, 0x64, 0x38, 0xb7 +.byte 0x8c, 0xbc, 0xe8, 0x88, 0xf9, 0x8b, 0x24, 0xab, 0x2e, 0xa3, 0xf5, 0x37, 0xe4, 0x40, 0x8e, 0x18 +.byte 0x25, 0x79, 0x83, 0x75, 0x1f, 0x3b, 0xff, 0x6c, 0xa8, 0xc5, 0xc6, 0x56, 0xf8, 0xb4, 0xed, 0x8a +.byte 0x44, 0xa3, 0xab, 0x6c, 0x4c, 0xfc, 0x1d, 0xd0, 0xdc, 0xef, 0x68, 0xbd, 0xcf, 0xe4, 0xaa, 0xce +.byte 0xf0, 0x55, 0xf7, 0xa2, 0x34, 0xd4, 0x83, 0x6b, 0x37, 0x7c, 0x1c, 0xc2, 0xfe, 0xb5, 0x03, 0xec +.byte 0x57, 0xce, 0xbc, 0xb4, 0xb5, 0xc5, 0xed, 0x00, 0x0f, 0x53, 0x37, 0x2a, 0x4d, 0xf4, 0x4f, 0x0c +.byte 0x83, 0xfb, 0x86, 0xcf, 0xcb, 0xfe, 0x8c, 0x4e, 0xbd, 0x87, 0xf9, 0xa7, 0x8b, 0x21, 0x57, 0x9c +.byte 0x7a, 0xdf, 0x03, 0x67, 0x89, 0x2c, 0x9d, 0x97, 0x61, 0xa7, 0x10, 0xb8, 0x55, 0x90, 0x7f, 0x0e +.byte 0x2d, 0x27, 0x38, 0x74, 0xdf, 0xe7, 0xfd, 0xda, 0x4e, 0x12, 0xe3, 0x4d, 0x15, 0x22, 0x02, 0xc8 +.byte 0xe0, 0xe0, 0xfc, 0x0f, 0xad, 0x8a, 0xd7, 0xc9, 0x54, 0x50, 0xcc, 0x3b, 0x0f, 0xca, 0x16, 0x80 +.byte 0x84, 0xd0, 0x51, 0x56, 0xc3, 0x8e, 0x56, 0x7f, 0x89, 0x22, 0x33, 0x2f, 0xe6, 0x85, 0x0a, 0xbd +.byte 0xa5, 0xa8, 0x1b, 0x36, 0xde, 0xd3, 0xdc, 0x2c, 0x6d, 0x3b, 0xc7, 0x13, 0xbd, 0x59, 0x23, 0x2c +.byte 0xe6, 0xe5, 0xa4, 0xf7, 0xd8, 0x0b, 0xed, 0xea, 0x90, 0x40, 0x44, 0xa8, 0x95, 0xbb, 0x93, 0xd5 +.byte 0xd0, 0x80, 0x34, 0xb6, 0x46, 0x78, 0x0e, 0x1f, 0x00, 0x93, 0x46, 0xe1, 0xee, 0xe9, 0xf9, 0xec +.byte 0x4f, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01 + +.global _binary_x509_crt_bundle_end +_binary_x509_crt_bundle_end: /* for objcopy compatibility */ + + +.global x509_crt_bundle_length +x509_crt_bundle_length: +.long 68983 + +#if defined (__linux__) +.section .note.GNU-stack,"",@progbits +#endif diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..be52464 --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1,7 @@ +set(srcs "dac_continuous_example_main.c" + "dac_continuous_example_dma.c" + "dac_continuous_example_timer.c") + +idf_component_register(SRCS "${srcs}" + INCLUDE_DIRS "." + PRIV_REQUIRES esp_driver_dac esp_driver_gpio esp_driver_gptimer esp_adc) diff --git a/main/Kconfig.projbuild b/main/Kconfig.projbuild new file mode 100644 index 0000000..5d34177 --- /dev/null +++ b/main/Kconfig.projbuild @@ -0,0 +1,22 @@ +menu "示例配置" + + choice EXAMPLE_DAC_CONTINUOUS_MODE + prompt "选择DAC连续示例模式" + default EXAMPLE_DAC_CONTINUOUS_BY_DMA + help + DAC通过DMA或定时器输出连续数据 + + config EXAMPLE_DAC_CONTINUOUS_BY_DMA + bool "通过DMA" + config EXAMPLE_DAC_CONTINUOUS_BY_TIMER + bool "通过定时器" + endchoice + + config EXAMPLE_WAVE_PERIOD_SEC + int "切换波形的周期(单位:秒)" + default 2 + help + 波形将每隔几秒切换一次, + 此配置用于指定切换周期 + +endmenu diff --git a/main/dac_continuous_example.h b/main/dac_continuous_example.h new file mode 100644 index 0000000..de0e635 --- /dev/null +++ b/main/dac_continuous_example.h @@ -0,0 +1,37 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ +#define CONST_PERIOD_2_PI 6.2832 // 2 * π + +#define EXAMPLE_ARRAY_LEN 400 // 波形数组长度 +#define EXAMPLE_DAC_AMPLITUDE 255 // DAC电压幅度。如果超过256会导致dac_output_voltage()输出0 + +typedef enum { + DAC_SINE_WAVE, + DAC_TRIANGLE_WAVE, + DAC_SAWTOOTH_WAVE, + DAC_SQUARE_WAVE, + DAC_WAVE_MAX, +} dac_example_wave_type_t; + +/** + * @brief 使用DMA连续转换 + * + */ +void example_dac_continuous_by_dma(void); + +/** + * @brief 使用定时器连续转换 + * + */ +void example_dac_continuous_by_timer(void); + +/** + * @brief 打印示例日志信息 + * + * @param conv_freq DAC转换频率 + * @param wave_freq 波形频率 + */ +void example_log_info(uint32_t conv_freq, uint32_t wave_freq); diff --git a/main/dac_continuous_example_dma.c b/main/dac_continuous_example_dma.c new file mode 100644 index 0000000..2ec7b14 --- /dev/null +++ b/main/dac_continuous_example_dma.c @@ -0,0 +1,87 @@ +/* + * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "driver/dac_continuous.h" +#include "esp_check.h" +#include "dac_continuous_example.h" + +#define EXAMPLE_WAVE_FREQ_HZ 2000 // 默认波形频率2000Hz,不能太低 +#define EXAMPLE_CONVERT_FREQ_HZ (EXAMPLE_ARRAY_LEN * EXAMPLE_WAVE_FREQ_HZ) // DAC转换波形数组中每个数据的频率 + +extern uint8_t sin_wav[EXAMPLE_ARRAY_LEN]; // 用于存储正弦波值 +extern uint8_t tri_wav[EXAMPLE_ARRAY_LEN]; // 用于存储三角波值 +extern uint8_t saw_wav[EXAMPLE_ARRAY_LEN]; // 用于存储锯齿波值 +extern uint8_t squ_wav[EXAMPLE_ARRAY_LEN]; // 用于存储方波值 + +static const char *TAG = "dac continuous(DMA)"; +static const char wav_name[DAC_WAVE_MAX][15] = {"sine", "triangle", "sawtooth", "square"}; + +static void dac_dma_write_task(void *args) +{ + dac_continuous_handle_t handle = (dac_continuous_handle_t)args; + dac_example_wave_type_t wav_sel = DAC_SINE_WAVE; // 从正弦波开始 + + size_t buf_len = EXAMPLE_ARRAY_LEN; + + while (1) { + /* 缓冲区中的波形将循环转换 */ + switch (wav_sel) { + case DAC_SINE_WAVE: + ESP_ERROR_CHECK(dac_continuous_write_cyclically(handle, (uint8_t *)sin_wav, buf_len, NULL)); + break; + case DAC_TRIANGLE_WAVE: + ESP_ERROR_CHECK(dac_continuous_write_cyclically(handle, (uint8_t *)tri_wav, buf_len, NULL)); + break; + case DAC_SAWTOOTH_WAVE: + ESP_ERROR_CHECK(dac_continuous_write_cyclically(handle, (uint8_t *)saw_wav, buf_len, NULL)); + break; + case DAC_SQUARE_WAVE: + ESP_ERROR_CHECK(dac_continuous_write_cyclically(handle, (uint8_t *)squ_wav, buf_len, NULL)); + break; + default: + break; + } + /* 每CONFIG_EXAMPLE_WAVE_PERIOD_SEC秒切换波形 */ + vTaskDelay(pdMS_TO_TICKS(CONFIG_EXAMPLE_WAVE_PERIOD_SEC * 1000)); + wav_sel++; + wav_sel %= DAC_WAVE_MAX; + ESP_LOGI(TAG, "%s wave start", wav_name[wav_sel]); + } +} + +void example_dac_continuous_by_dma(void) +{ + dac_continuous_handle_t cont_handle; + dac_continuous_config_t cont_cfg = { + .chan_mask = DAC_CHANNEL_MASK_ALL, + .desc_num = 8, + .buf_size = 2048, + .freq_hz = EXAMPLE_CONVERT_FREQ_HZ, + .offset = 0, + .clk_src = DAC_DIGI_CLK_SRC_DEFAULT, // 如果频率超出范围,尝试'DAC_DIGI_CLK_SRC_APLL' + /* 假设缓冲区中的数据是'A B C D E F' + * DAC_CHANNEL_MODE_SIMUL: + * - 通道0: A B C D E F + * - 通道1: A B C D E F + * DAC_CHANNEL_MODE_ALTER: + * - 通道0: A C E + * - 通道1: B D F + */ + .chan_mode = DAC_CHANNEL_MODE_SIMUL, + }; + /* 分配连续通道 */ + ESP_ERROR_CHECK(dac_continuous_new_channels(&cont_cfg, &cont_handle)); + /* 启用组中的通道 */ + ESP_ERROR_CHECK(dac_continuous_enable(cont_handle)); + + example_log_info(EXAMPLE_CONVERT_FREQ_HZ, EXAMPLE_WAVE_FREQ_HZ); + + /* 开始转换波形 */ + xTaskCreate(dac_dma_write_task, "dac_dma_write_task", 4096, cont_handle, 5, NULL); +} diff --git a/main/dac_continuous_example_main.c b/main/dac_continuous_example_main.c new file mode 100644 index 0000000..4e17f56 --- /dev/null +++ b/main/dac_continuous_example_main.c @@ -0,0 +1,121 @@ +/* + * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "soc/dac_channel.h" +#include "esp_adc/adc_oneshot.h" +#include "esp_check.h" +#include "dac_continuous_example.h" + +/** + * 有两种方式可以连续将数字数据转换为模拟信号: + * - 使用定时器:在定时器中断中定期设置DAC电压 + * 这种方式,DAC可以达到相对较低的转换频率 + * 但与使用DMA相比,这不是一种高效的方式 + * - 使用DMA:通过DMA传输数据缓冲区, + * 转换频率由DMA传输速度控制 + * 这种方式,转换频率可以达到几MHz, + * 但由于受DMA时钟源限制,无法达到很低的转换频率 + * 一般来说,推荐使用DMA,如果DMA外设被占用或所需的转换频率很低, + * 则使用定时器代替 + */ + +/* ADC配置 */ +#if CONFIG_IDF_TARGET_ESP32 +#define EXAMPLE_DAC_CHAN0_ADC_CHAN ADC_CHANNEL_8 // GPIO25,与DAC通道0相同 +#define EXAMPLE_DAC_CHAN1_ADC_CHAN ADC_CHANNEL_9 // GPIO26,与DAC通道1相同 +#define EXAMPLE_ADC_WIDTH ADC_WIDTH_BIT_12 +#elif CONFIG_IDF_TARGET_ESP32S2 +#define EXAMPLE_DAC_CHAN0_ADC_CHAN ADC_CHANNEL_6 // GPIO17,与DAC通道0相同 +#define EXAMPLE_DAC_CHAN1_ADC_CHAN ADC_CHANNEL_7 // GPIO18,与DAC通道1相同 +#define EXAMPLE_ADC_WIDTH ADC_WIDTH_BIT_13 +#endif +#define EXAMPLE_DAC_CHAN0_IO DAC_CHAN0_GPIO_NUM // DAC通道0的IO号 +#define EXAMPLE_DAC_CHAN1_IO DAC_CHAN1_GPIO_NUM // DAC通道1的IO号 +#define EXAMPLE_ADC_ATTEN ADC_ATTEN_DB_12 + +_Static_assert(EXAMPLE_DAC_AMPLITUDE < 256, "DAC精度为8位,不支持超过255的幅度"); + +static const char *TAG = "dac continuous"; + +uint8_t sin_wav[EXAMPLE_ARRAY_LEN]; // 用于存储正弦波值 +uint8_t tri_wav[EXAMPLE_ARRAY_LEN]; // 用于存储三角波值 +uint8_t saw_wav[EXAMPLE_ARRAY_LEN]; // 用于存储锯齿波值 +uint8_t squ_wav[EXAMPLE_ARRAY_LEN]; // 用于存储方波值 + +static void example_generate_wave(void) +{ + uint32_t pnt_num = EXAMPLE_ARRAY_LEN; + + for (int i = 0; i < pnt_num; i ++) { + sin_wav[i] = (uint8_t)((sin(i * CONST_PERIOD_2_PI / pnt_num) + 1) * (double)(EXAMPLE_DAC_AMPLITUDE) / 2 + 0.5); + tri_wav[i] = (i > (pnt_num / 2)) ? (2 * EXAMPLE_DAC_AMPLITUDE * (pnt_num - i) / pnt_num) : (2 * EXAMPLE_DAC_AMPLITUDE * i / pnt_num); + saw_wav[i] = (i == pnt_num) ? 0 : (i * EXAMPLE_DAC_AMPLITUDE / pnt_num); + squ_wav[i] = (i < (pnt_num / 2)) ? EXAMPLE_DAC_AMPLITUDE : 0; + } +} + +void example_log_info(uint32_t conv_freq, uint32_t wave_freq) +{ + ESP_LOGI(TAG, "--------------------------------------------------"); +#if CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA + ESP_LOGI(TAG, "DAC continuous output by DMA"); +#else + ESP_LOGI(TAG, "DAC continuous output by timer"); +#endif + ESP_LOGI(TAG, "DAC channel 0 io: GPIO_NUM_%d", EXAMPLE_DAC_CHAN0_IO); + ESP_LOGI(TAG, "DAC channel 1 io: GPIO_NUM_%d", EXAMPLE_DAC_CHAN1_IO); + ESP_LOGI(TAG, "Waveform: SINE -> TRIANGLE -> SAWTOOTH -> SQUARE"); + ESP_LOGI(TAG, "DAC conversion frequency (Hz): %"PRIu32, conv_freq); + ESP_LOGI(TAG, "DAC wave frequency (Hz): %"PRIu32, wave_freq); + ESP_LOGI(TAG, "--------------------------------------------------"); +} + +static void adc_monitor_task(void *args) +{ + adc_oneshot_unit_handle_t adc2_handle = (adc_oneshot_unit_handle_t)args; + + int chan0_val = 0; + int chan1_val = 0; + while (1) { + /* 读取DAC输出电压 */ + ESP_ERROR_CHECK(adc_oneshot_read(adc2_handle, EXAMPLE_DAC_CHAN0_ADC_CHAN, &chan0_val)); + ESP_ERROR_CHECK(adc_oneshot_read(adc2_handle, EXAMPLE_DAC_CHAN1_ADC_CHAN, &chan1_val)); + printf("DAC channel 0 value: %4d\tDAC channel 1 value: %4d\n", chan0_val, chan1_val); + vTaskDelay(pdMS_TO_TICKS(100)); + } +} + +void app_main(void) +{ + example_generate_wave(); +#if CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA + /* 使用DMA输出2kHz波形 */ + example_dac_continuous_by_dma(); +#else + /* 使用定时器中断输出50Hz波形 */ + example_dac_continuous_by_timer(); +#endif + + /* 设置ADC2通道,这些通道内部连接到DAC通道 */ + adc_oneshot_unit_handle_t adc2_handle; + adc_oneshot_unit_init_cfg_t adc_cfg = { + .unit_id = ADC_UNIT_2, + .ulp_mode = false, + }; + ESP_ERROR_CHECK(adc_oneshot_new_unit(&adc_cfg, &adc2_handle)); + adc_oneshot_chan_cfg_t chan_cfg = { + .atten = EXAMPLE_ADC_ATTEN, + .bitwidth = ADC_BITWIDTH_DEFAULT, + }; + ESP_ERROR_CHECK(adc_oneshot_config_channel(adc2_handle, EXAMPLE_DAC_CHAN0_ADC_CHAN, &chan_cfg)); + ESP_ERROR_CHECK(adc_oneshot_config_channel(adc2_handle, EXAMPLE_DAC_CHAN1_ADC_CHAN, &chan_cfg)); + /* 创建ADC监控任务以检测DAC引脚上的电压 */ + xTaskCreate(adc_monitor_task, "adc_monitor_task", 4096, adc2_handle, 5, NULL); +} diff --git a/main/dac_continuous_example_timer.c b/main/dac_continuous_example_timer.c new file mode 100644 index 0000000..ae2f40d --- /dev/null +++ b/main/dac_continuous_example_timer.c @@ -0,0 +1,109 @@ +/* + * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include +#include +#include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/queue.h" +#include "driver/gpio.h" +#include "driver/gptimer.h" +#include "driver/dac_oneshot.h" +#include "esp_log.h" +#include "dac_continuous_example.h" + +#define EXAMPLE_TIMER_RESOLUTION 1000000 // 1MHz,1个tick = 1us +#define EXAMPLE_WAVE_FREQ_HZ 50 // 默认波形频率50Hz,不能太高 +#define EXAMPLE_CONVERT_FREQ_HZ (EXAMPLE_ARRAY_LEN * EXAMPLE_WAVE_FREQ_HZ) // DAC转换波形数组中每个数据的频率 +#define EXAMPLE_TIMER_ALARM_COUNT (EXAMPLE_TIMER_RESOLUTION / EXAMPLE_CONVERT_FREQ_HZ) // 触发定时器报警回调的计数值 + +static const char *TAG = "dac continuous(timer)"; +static const char wav_name[DAC_WAVE_MAX][15] = {"sine", "triangle", "sawtooth", "square"}; +static dac_oneshot_handle_t chan0_handle; +static dac_oneshot_handle_t chan1_handle; + +extern uint8_t sin_wav[EXAMPLE_ARRAY_LEN]; // 用于存储正弦波值 +extern uint8_t tri_wav[EXAMPLE_ARRAY_LEN]; // 用于存储三角波值 +extern uint8_t saw_wav[EXAMPLE_ARRAY_LEN]; // 用于存储锯齿波值 +extern uint8_t squ_wav[EXAMPLE_ARRAY_LEN]; // 用于存储方波值 + +/* 定时器中断服务例程 */ +static bool IRAM_ATTR on_timer_alarm_cb(gptimer_handle_t timer, const gptimer_alarm_event_data_t *edata, void *user_data) +{ + static uint32_t point_cnt = 0; // 用于计算一个波形的输出点数 + static uint32_t index = 0; // 波形缓冲区的当前索引 + static dac_example_wave_type_t wav_sel = DAC_SINE_WAVE; // 从正弦波开始 + + // 每CONFIG_EXAMPLE_WAVE_PERIOD_SEC秒切换波形 + if (point_cnt < EXAMPLE_CONVERT_FREQ_HZ * CONFIG_EXAMPLE_WAVE_PERIOD_SEC) { + switch (wav_sel) { + case DAC_SINE_WAVE: + ESP_ERROR_CHECK(dac_oneshot_output_voltage(chan0_handle, sin_wav[index])); + ESP_ERROR_CHECK(dac_oneshot_output_voltage(chan1_handle, sin_wav[index])); + break; + case DAC_TRIANGLE_WAVE: + ESP_ERROR_CHECK(dac_oneshot_output_voltage(chan0_handle, tri_wav[index])); + ESP_ERROR_CHECK(dac_oneshot_output_voltage(chan1_handle, tri_wav[index])); + break; + case DAC_SAWTOOTH_WAVE: + ESP_ERROR_CHECK(dac_oneshot_output_voltage(chan0_handle, saw_wav[index])); + ESP_ERROR_CHECK(dac_oneshot_output_voltage(chan1_handle, saw_wav[index])); + break; + case DAC_SQUARE_WAVE: + ESP_ERROR_CHECK(dac_oneshot_output_voltage(chan0_handle, squ_wav[index])); + ESP_ERROR_CHECK(dac_oneshot_output_voltage(chan1_handle, squ_wav[index])); + break; + default: + break; + } + point_cnt++; + index++; + index %= EXAMPLE_ARRAY_LEN; + } else { + wav_sel++; + wav_sel %= DAC_WAVE_MAX; + point_cnt = 0; + index = 0; + ESP_EARLY_LOGI(TAG, "%s wave start", wav_name[wav_sel]); + } + return false; +} + +void example_dac_continuous_by_timer(void) +{ + gptimer_handle_t gptimer = NULL; + gptimer_config_t timer_config = { + .clk_src = GPTIMER_CLK_SRC_DEFAULT, + .direction = GPTIMER_COUNT_UP, + .resolution_hz = EXAMPLE_TIMER_RESOLUTION, // 1MHz,1个tick = 1us + }; + ESP_ERROR_CHECK(gptimer_new_timer(&timer_config, &gptimer)); + dac_oneshot_config_t dac0_cfg = { + .chan_id = DAC_CHAN_0, + }; + ESP_ERROR_CHECK(dac_oneshot_new_channel(&dac0_cfg, &chan0_handle)); + dac_oneshot_config_t dac1_cfg = { + .chan_id = DAC_CHAN_1, + }; + ESP_ERROR_CHECK(dac_oneshot_new_channel(&dac1_cfg, &chan1_handle)); + + example_log_info(EXAMPLE_CONVERT_FREQ_HZ, EXAMPLE_WAVE_FREQ_HZ); + + gptimer_alarm_config_t alarm_config = { + .reload_count = 0, + .alarm_count = EXAMPLE_TIMER_ALARM_COUNT, + .flags.auto_reload_on_alarm = true, + }; + gptimer_event_callbacks_t cbs = { + .on_alarm = on_timer_alarm_cb, + }; + ESP_ERROR_CHECK(gptimer_register_event_callbacks(gptimer, &cbs, NULL)); + ESP_ERROR_CHECK(gptimer_set_alarm_action(gptimer, &alarm_config)); + ESP_ERROR_CHECK(gptimer_enable(gptimer)); + ESP_ERROR_CHECK(gptimer_start(gptimer)); +} diff --git a/pytest_dac_continuous.py b/pytest_dac_continuous.py new file mode 100644 index 0000000..d64cc10 --- /dev/null +++ b/pytest_dac_continuous.py @@ -0,0 +1,45 @@ +# SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD +# SPDX-License-Identifier: CC0-1.0 +import pytest +from pytest_embedded import Dut +from pytest_embedded_idf.utils import idf_parametrize + + +def test_dac_continuous_output(dut: Dut, mode: str, chan0_io: str, chan1_io: str) -> None: + dut.expect('dac continuous: --------------------------------------------------', timeout=10) + dut.expect('dac continuous: DAC continuous output by {}'.format(mode), timeout=10) + dut.expect('dac continuous: DAC channel 0 io: GPIO_NUM_{}'.format(chan0_io), timeout=10) + dut.expect('dac continuous: DAC channel 1 io: GPIO_NUM_{}'.format(chan1_io), timeout=10) + dut.expect('dac continuous: Waveform: SINE -> TRIANGLE -> SAWTOOTH -> SQUARE', timeout=10) + dut.expect('dac continuous: DAC conversion frequency \\(Hz\\): ([0-9]+)', timeout=10) + dut.expect('dac continuous: DAC wave frequency \\(Hz\\): ([0-9]+)', timeout=10) + dut.expect('dac continuous: --------------------------------------------------', timeout=10) + dut.expect(r'DAC channel 0 value:( +)(\d+)(.*)DAC channel 1 value:( +)(\d+)', timeout=10) + dut.expect(r'dac continuous\({}\): triangle wave start'.format(mode), timeout=20) + dut.expect(r'dac continuous\({}\): sawtooth wave start'.format(mode), timeout=20) + dut.expect(r'dac continuous\({}\): square wave start'.format(mode), timeout=20) + dut.expect(r'dac continuous\({}\): sine wave start'.format(mode), timeout=20) + + +@pytest.mark.generic +@pytest.mark.parametrize( + 'config', + [ + 'dma', + 'timer', + ], + indirect=True, +) +@idf_parametrize('target', ['esp32', 'esp32s2'], indirect=['target']) +def test_dac_continuous_example_with_dma(dut: Dut) -> None: + sdkconfig = dut.app.sdkconfig + if dut.target == 'esp32': + if sdkconfig['EXAMPLE_DAC_CONTINUOUS_BY_DMA']: + test_dac_continuous_output(dut, 'DMA', '25', '26') + else: + test_dac_continuous_output(dut, 'timer', '25', '26') + elif dut.target == 'esp32s2': + if sdkconfig['EXAMPLE_DAC_CONTINUOUS_BY_DMA']: + test_dac_continuous_output(dut, 'DMA', '17', '18') + else: + test_dac_continuous_output(dut, 'timer', '17', '18') diff --git a/sdkconfig b/sdkconfig new file mode 100644 index 0000000..e7049f1 --- /dev/null +++ b/sdkconfig @@ -0,0 +1,1679 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.5.1 Project Configuration +# +CONFIG_SOC_ADC_SUPPORTED=y +CONFIG_SOC_UART_SUPPORTED=y +CONFIG_SOC_PCNT_SUPPORTED=y +CONFIG_SOC_PHY_SUPPORTED=y +CONFIG_SOC_WIFI_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_GDMA_SUPPORTED=y +CONFIG_SOC_UHCI_SUPPORTED=y +CONFIG_SOC_AHB_GDMA_SUPPORTED=y +CONFIG_SOC_GPTIMER_SUPPORTED=y +CONFIG_SOC_LCDCAM_SUPPORTED=y +CONFIG_SOC_LCDCAM_CAM_SUPPORTED=y +CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED=y +CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED=y +CONFIG_SOC_MCPWM_SUPPORTED=y +CONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y +CONFIG_SOC_CACHE_SUPPORT_WRAP=y +CONFIG_SOC_ULP_SUPPORTED=y +CONFIG_SOC_ULP_FSM_SUPPORTED=y +CONFIG_SOC_RISCV_COPROC_SUPPORTED=y +CONFIG_SOC_BT_SUPPORTED=y +CONFIG_SOC_USB_OTG_SUPPORTED=y +CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED=y +CONFIG_SOC_CCOMP_TIMER_SUPPORTED=y +CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED=y +CONFIG_SOC_SUPPORTS_SECURE_DL_MODE=y +CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y +CONFIG_SOC_EFUSE_SUPPORTED=y +CONFIG_SOC_SDMMC_HOST_SUPPORTED=y +CONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y +CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y +CONFIG_SOC_RTC_MEM_SUPPORTED=y +CONFIG_SOC_PSRAM_DMA_CAPABLE=y +CONFIG_SOC_XT_WDT_SUPPORTED=y +CONFIG_SOC_I2S_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_SYSTIMER_SUPPORTED=y +CONFIG_SOC_SUPPORT_COEXISTENCE=y +CONFIG_SOC_TEMP_SENSOR_SUPPORTED=y +CONFIG_SOC_AES_SUPPORTED=y +CONFIG_SOC_MPI_SUPPORTED=y +CONFIG_SOC_SHA_SUPPORTED=y +CONFIG_SOC_HMAC_SUPPORTED=y +CONFIG_SOC_DIG_SIGN_SUPPORTED=y +CONFIG_SOC_FLASH_ENC_SUPPORTED=y +CONFIG_SOC_SECURE_BOOT_SUPPORTED=y +CONFIG_SOC_MEMPROT_SUPPORTED=y +CONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y +CONFIG_SOC_BOD_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_SIMD_INSTRUCTION_SUPPORTED=y +CONFIG_SOC_XTAL_SUPPORT_40M=y +CONFIG_SOC_APPCPU_HAS_CLOCK_GATING_BUG=y +CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y +CONFIG_SOC_ADC_DIG_CTRL_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_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_IIR_FILTER_NUM=2 +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_CALIBRATION_V1_SUPPORTED=y +CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED=y +CONFIG_SOC_ADC_SHARED_POWER=y +CONFIG_SOC_APB_BACKUP_DMA=y +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED=y +CONFIG_SOC_CACHE_FREEZE_SUPPORTED=y +CONFIG_SOC_CACHE_ACS_INVALID_STATE_ON_PANIC=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_SIMD_PREFERRED_DATA_ALIGNMENT=16 +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_AHB_GDMA_VERSION=1 +CONFIG_SOC_GDMA_NUM_GROUPS_MAX=1 +CONFIG_SOC_GDMA_PAIRS_PER_GROUP=5 +CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX=5 +CONFIG_SOC_AHB_GDMA_SUPPORT_PSRAM=y +CONFIG_SOC_GPIO_PORT=1 +CONFIG_SOC_GPIO_PIN_COUNT=49 +CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER=y +CONFIG_SOC_GPIO_FILTER_CLK_SUPPORT_APB=y +CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y +CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y +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_GPIO_SUPPORT_HOLD_IO_IN_DSLP=y +CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM=8 +CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM=8 +CONFIG_SOC_DEDIC_GPIO_OUT_AUTO_ENABLE=y +CONFIG_SOC_I2C_NUM=2 +CONFIG_SOC_HP_I2C_NUM=2 +CONFIG_SOC_I2C_FIFO_LEN=32 +CONFIG_SOC_I2C_CMD_REG_NUM=8 +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS=y +CONFIG_SOC_I2C_SUPPORT_XTAL=y +CONFIG_SOC_I2C_SUPPORT_RTC=y +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST=y +CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS=y +CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE=y +CONFIG_SOC_I2S_NUM=2 +CONFIG_SOC_I2S_HW_VERSION_2=y +CONFIG_SOC_I2S_SUPPORTS_XTAL=y +CONFIG_SOC_I2S_SUPPORTS_PLL_F160M=y +CONFIG_SOC_I2S_SUPPORTS_PCM=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_I2S_SUPPORTS_TDM=y +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_LEDC_TIMER_NUM=4 +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=14 +CONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y +CONFIG_SOC_MCPWM_GROUPS=2 +CONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3 +CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3 +CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3 +CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y +CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3 +CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3 +CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=1 +CONFIG_SOC_MMU_PERIPH_NUM=1 +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_PCNT_GROUPS=1 +CONFIG_SOC_PCNT_UNITS_PER_GROUP=4 +CONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2 +CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2 +CONFIG_SOC_RMT_GROUPS=1 +CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=4 +CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=4 +CONFIG_SOC_RMT_CHANNELS_PER_GROUP=8 +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=48 +CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG=y +CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION=y +CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT=y +CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP=y +CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO=y +CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY=y +CONFIG_SOC_RMT_SUPPORT_XTAL=y +CONFIG_SOC_RMT_SUPPORT_RC_FAST=y +CONFIG_SOC_RMT_SUPPORT_APB=y +CONFIG_SOC_RMT_SUPPORT_DMA=y +CONFIG_SOC_LCD_I80_SUPPORTED=y +CONFIG_SOC_LCD_RGB_SUPPORTED=y +CONFIG_SOC_LCD_I80_BUSES=1 +CONFIG_SOC_LCD_RGB_PANELS=1 +CONFIG_SOC_LCD_I80_BUS_WIDTH=16 +CONFIG_SOC_LCD_RGB_DATA_WIDTH=16 +CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV=y +CONFIG_SOC_LCDCAM_I80_NUM_BUSES=1 +CONFIG_SOC_LCDCAM_I80_BUS_WIDTH=16 +CONFIG_SOC_LCDCAM_RGB_NUM_PANELS=1 +CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH=16 +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_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_LP_IO_CLOCK_IS_INDEPENDENT=y +CONFIG_SOC_SDM_GROUPS=1 +CONFIG_SOC_SDM_CHANNELS_PER_GROUP=8 +CONFIG_SOC_SDM_CLK_SUPPORT_APB=y +CONFIG_SOC_SPI_PERIPH_NUM=3 +CONFIG_SOC_SPI_MAX_CS_NUM=6 +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +CONFIG_SOC_SPI_SUPPORT_DDRCLK=y +CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS=y +CONFIG_SOC_SPI_SUPPORT_CD_SIG=y +CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS=y +CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2=y +CONFIG_SOC_SPI_SUPPORT_CLK_APB=y +CONFIG_SOC_SPI_SUPPORT_CLK_XTAL=y +CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT=y +CONFIG_SOC_MEMSPI_IS_INDEPENDENT=y +CONFIG_SOC_SPI_MAX_PRE_DIVIDER=16 +CONFIG_SOC_SPI_SUPPORT_OCT=y +CONFIG_SOC_SPI_SCT_SUPPORTED=y +CONFIG_SOC_SPI_SCT_REG_NUM=14 +CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX=y +CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX=0x3FFFA +CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +CONFIG_SOC_SPIRAM_SUPPORTED=y +CONFIG_SOC_SPIRAM_XIP_SUPPORTED=y +CONFIG_SOC_SYSTIMER_COUNTER_NUM=2 +CONFIG_SOC_SYSTIMER_ALARM_NUM=3 +CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI=20 +CONFIG_SOC_SYSTIMER_FIXED_DIVIDER=y +CONFIG_SOC_SYSTIMER_INT_LEVEL=y +CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE=y +CONFIG_SOC_TIMER_GROUPS=2 +CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=2 +CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=54 +CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL=y +CONFIG_SOC_TIMER_GROUP_SUPPORT_APB=y +CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=4 +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_SENSOR_NUM=15 +CONFIG_SOC_TOUCH_MIN_CHAN_ID=1 +CONFIG_SOC_TOUCH_MAX_CHAN_ID=14 +CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK=y +CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP=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_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y +CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=1 +CONFIG_SOC_TWAI_CONTROLLER_NUM=1 +CONFIG_SOC_TWAI_MASK_FILTER_NUM=1 +CONFIG_SOC_TWAI_CLK_SUPPORT_APB=y +CONFIG_SOC_TWAI_BRP_MIN=2 +CONFIG_SOC_TWAI_BRP_MAX=16384 +CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y +CONFIG_SOC_UART_NUM=3 +CONFIG_SOC_UART_HP_NUM=3 +CONFIG_SOC_UART_FIFO_LEN=128 +CONFIG_SOC_UART_BITRATE_MAX=5000000 +CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND=y +CONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y +CONFIG_SOC_UART_SUPPORT_APB_CLK=y +CONFIG_SOC_UART_SUPPORT_RTC_CLK=y +CONFIG_SOC_UART_SUPPORT_XTAL_CLK=y +CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE=y +CONFIG_SOC_UHCI_NUM=1 +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_GDMA=y +CONFIG_SOC_SHA_SUPPORT_SHA1=y +CONFIG_SOC_SHA_SUPPORT_SHA224=y +CONFIG_SOC_SHA_SUPPORT_SHA256=y +CONFIG_SOC_SHA_SUPPORT_SHA384=y +CONFIG_SOC_SHA_SUPPORT_SHA512=y +CONFIG_SOC_SHA_SUPPORT_SHA512_224=y +CONFIG_SOC_SHA_SUPPORT_SHA512_256=y +CONFIG_SOC_SHA_SUPPORT_SHA512_T=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_DMA=y +CONFIG_SOC_AES_GDMA=y +CONFIG_SOC_AES_SUPPORT_AES_128=y +CONFIG_SOC_AES_SUPPORT_AES_256=y +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_WIFI_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_BT_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y +CONFIG_SOC_PM_SUPPORT_CPU_PD=y +CONFIG_SOC_PM_SUPPORT_TAGMEM_PD=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_MAC_BB_PD=y +CONFIG_SOC_PM_SUPPORT_MODEM_PD=y +CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED=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_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_CLK_LP_FAST_SUPPORT_XTAL_D2=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_DIS_USB_JTAG=y +CONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y +CONFIG_SOC_EFUSE_DIS_ICACHE=y +CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK=y +CONFIG_SOC_SECURE_BOOT_V2_RSA=y +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3 +CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y +CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y +CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=64 +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_PHY_DIG_REGS_MEM_SIZE=21 +CONFIG_SOC_MAC_BB_PD_MEM_SIZE=192 +CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12 +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME=y +CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y +CONFIG_SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE=y +CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING=y +CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y +CONFIG_SOC_SPI_MEM_SUPPORT_WRAP=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_COEX_HW_PTI=y +CONFIG_SOC_EXTERNAL_COEX_LEADER_TX_LINE=y +CONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +CONFIG_SOC_SDMMC_SUPPORT_XTAL_CLOCK=y +CONFIG_SOC_SDMMC_DELAY_PHASE_NUM=4 +CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC=y +CONFIG_SOC_WIFI_HW_TSF=y +CONFIG_SOC_WIFI_FTM_SUPPORT=y +CONFIG_SOC_WIFI_GCMP_SUPPORT=y +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_WIFI_PHY_NEEDS_USB_WORKAROUND=y +CONFIG_SOC_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_BLE_50_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_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV=y +CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM=1 +CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX=16 +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TOOLCHAIN_GCC=y +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32s3" +CONFIG_IDF_INIT_VERSION="5.5.1" +CONFIG_IDF_TARGET_ESP32S3=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0009 + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# CONFIG_APP_BUILD_TYPE_RAM is not set +CONFIG_APP_BUILD_GENERATE_BINARIES=y +CONFIG_APP_BUILD_BOOTLOADER=y +CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# CONFIG_APP_REPRODUCIBLE_BUILD is not set +# CONFIG_APP_NO_BLOBS is not set +# end of Build type + +# +# Bootloader config +# + +# +# Bootloader manager +# +CONFIG_BOOTLOADER_COMPILE_TIME_DATE=y +CONFIG_BOOTLOADER_PROJECT_VER=1 +# end of Bootloader manager + +# +# Application Rollback +# +# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set +# end of Application Rollback + +# +# Recovery Bootloader and Rollback +# +# end of Recovery Bootloader and Rollback + +CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x0 +CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set + +# +# Log +# +CONFIG_BOOTLOADER_LOG_VERSION_1=y +CONFIG_BOOTLOADER_LOG_VERSION=1 +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +CONFIG_BOOTLOADER_LOG_LEVEL=3 + +# +# Format +# +# CONFIG_BOOTLOADER_LOG_COLORS is not set +CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y +# end of Format + +# +# Settings +# +CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN=y +CONFIG_BOOTLOADER_LOG_MODE_TEXT=y +# end of Settings +# end of Log + +# +# Serial Flash Configurations +# +# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# end of Serial Flash Configurations + +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# CONFIG_BOOTLOADER_FACTORY_RESET is not set +# CONFIG_BOOTLOADER_APP_TEST is not set +CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y +CONFIG_BOOTLOADER_WDT_ENABLE=y +# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set +CONFIG_BOOTLOADER_WDT_TIME_MS=9000 +# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set +CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 +# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set +# end of Bootloader config + +# +# Security features +# +CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED=y +CONFIG_SECURE_BOOT_V2_PREFERRED=y +# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set +# CONFIG_SECURE_BOOT is not set +# CONFIG_SECURE_FLASH_ENC_ENABLED is not set +CONFIG_SECURE_ROM_DL_MODE_ENABLED=y +# end of Security features + +# +# Application manager +# +CONFIG_APP_COMPILE_TIME_DATE=y +# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set +# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set +# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set +CONFIG_APP_RETRIEVE_LEN_ELF_SHA=9 +# end of Application manager + +CONFIG_ESP_ROM_HAS_CRC_LE=y +CONFIG_ESP_ROM_HAS_CRC_BE=y +CONFIG_ESP_ROM_HAS_MZ_CRC32=y +CONFIG_ESP_ROM_HAS_JPEG_DECODE=y +CONFIG_ESP_ROM_UART_CLK_IS_XTAL=y +CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING=y +CONFIG_ESP_ROM_USB_OTG_NUM=3 +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=4 +CONFIG_ESP_ROM_HAS_ERASE_0_REGION_BUG=y +CONFIG_ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV=y +CONFIG_ESP_ROM_GET_CLK_FREQ=y +CONFIG_ESP_ROM_HAS_HAL_WDT=y +CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y +CONFIG_ESP_ROM_HAS_LAYOUT_TABLE=y +CONFIG_ESP_ROM_HAS_SPI_FLASH=y +CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP=y +CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=y +CONFIG_ESP_ROM_HAS_NEWLIB=y +CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y +CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME=y +CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE=y +CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT=y +CONFIG_ESP_ROM_HAS_FLASH_COUNT_PAGES_BUG=y +CONFIG_ESP_ROM_HAS_CACHE_SUSPEND_WAITI_BUG=y +CONFIG_ESP_ROM_HAS_CACHE_WRITEBACK_BUG=y +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +CONFIG_ESP_ROM_HAS_VERSION=y +CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB=y +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y +CONFIG_ESP_ROM_CONSOLE_OUTPUT_SECONDARY=y + +# +# Boot ROM Behavior +# +CONFIG_BOOT_ROM_LOG_ALWAYS_ON=y +# CONFIG_BOOT_ROM_LOG_ALWAYS_OFF is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW is not set +# end of Boot ROM Behavior + +# +# Serial flasher config +# +# CONFIG_ESPTOOLPY_NO_STUB 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_40M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +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_ESPTOOLPY_MONITOR_BAUD=115200 +# end of Serial flasher config + +# +# Partition Table +# +CONFIG_PARTITION_TABLE_SINGLE_APP=y +# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# CONFIG_PARTITION_TABLE_TWO_OTA_LARGE is not set +# CONFIG_PARTITION_TABLE_CUSTOM is not set +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# 示例配置 +# +CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA=y +# CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_TIMER is not set +CONFIG_EXAMPLE_WAVE_PERIOD_SEC=2 +# end of 示例配置 + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE=y +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# CONFIG_COMPILER_CXX_RTTI is not set +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS=y +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_GCCLIB=y +CONFIG_COMPILER_RT_LIB_NAME="gcc" +CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING=y +# CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE is not set +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# end of Compiler options + +# +# Component config +# + +# +# !!! MINIMAL_BUILD is enabled !!! +# + +# +# Only common components and those transitively required by the main component are listed +# + +# +# If a component configuration is missing, please add it to the main component's requirements +# + +# +# Driver Configurations +# + +# +# Legacy TWAI Driver Configurations +# +# CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK is not set +CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM=y +# end of Legacy TWAI Driver Configurations + +# +# Legacy ADC Driver Configuration +# +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK is not set + +# +# Legacy ADC Calibration Configuration +# +# CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy ADC Calibration Configuration +# end of Legacy ADC Driver Configuration + +# +# Legacy MCPWM Driver Configurations +# +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy MCPWM Driver Configurations + +# +# Legacy Timer Group Driver Configurations +# +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Timer Group Driver Configurations + +# +# Legacy RMT Driver Configurations +# +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy RMT Driver Configurations + +# +# Legacy I2S Driver Configurations +# +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2S Driver Configurations + +# +# Legacy I2C Driver Configurations +# +# CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2C Driver Configurations + +# +# Legacy PCNT Driver Configurations +# +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy PCNT Driver Configurations + +# +# Legacy SDM Driver Configurations +# +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy SDM Driver Configurations + +# +# Legacy Temperature Sensor Driver Configurations +# +# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Temperature Sensor Driver Configurations + +# +# Legacy Touch Sensor Driver Configurations +# +# CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Touch Sensor Driver Configurations +# end of Driver Configurations + +# +# eFuse Bit Manager +# +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# CONFIG_EFUSE_VIRTUAL is not set +CONFIG_EFUSE_MAX_BLK_LEN=256 +# end of eFuse Bit Manager + +# +# ADC and ADC Calibration +# +# CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE is not set +# CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 is not set +# CONFIG_ADC_ENABLE_DEBUG_LOG is not set +# end of ADC and ADC Calibration + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# ESP-Driver:GPIO Configurations +# +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:GPIO Configurations + +# +# ESP-Driver:GPTimer Configurations +# +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_CACHE_SAFE is not set +CONFIG_GPTIMER_OBJ_CACHE_SAFE=y +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:GPTimer Configurations + +# +# ESP-Driver:I2C Configurations +# +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 is not set +CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM=y +# end of ESP-Driver:I2C Configurations + +# +# ESP-Driver:I2S Configurations +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:I2S Configurations + +# +# ESP-Driver:LEDC Configurations +# +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:LEDC Configurations + +# +# ESP-Driver:MCPWM Configurations +# +CONFIG_MCPWM_ISR_HANDLER_IN_IRAM=y +# CONFIG_MCPWM_ISR_CACHE_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +CONFIG_MCPWM_OBJ_CACHE_SAFE=y +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:MCPWM Configurations + +# +# ESP-Driver:PCNT Configurations +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:PCNT Configurations + +# +# ESP-Driver:RMT Configurations +# +CONFIG_RMT_ENCODER_FUNC_IN_IRAM=y +CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM=y +CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM=y +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_TX_ISR_CACHE_SAFE is not set +# CONFIG_RMT_RX_ISR_CACHE_SAFE is not set +CONFIG_RMT_OBJ_CACHE_SAFE=y +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# end of ESP-Driver:RMT Configurations + +# +# ESP-Driver:Sigma Delta Modulator Configurations +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Sigma Delta Modulator Configurations + +# +# ESP-Driver:SPI Configurations +# +# CONFIG_SPI_MASTER_IN_IRAM is not set +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# CONFIG_SPI_SLAVE_IN_IRAM is not set +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of ESP-Driver:SPI Configurations + +# +# ESP-Driver:Temperature Sensor Configurations +# +# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Temperature Sensor Configurations + +# +# ESP-Driver:TWAI Configurations +# +# CONFIG_TWAI_ISR_IN_IRAM is not set +# CONFIG_TWAI_ISR_CACHE_SAFE is not set +# CONFIG_TWAI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:TWAI Configurations + +# +# ESP-Driver:UART Configurations +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of ESP-Driver:UART Configurations + +# +# ESP-Driver:UHCI Configurations +# +# CONFIG_UHCI_ISR_HANDLER_IN_IRAM is not set +# CONFIG_UHCI_ISR_CACHE_SAFE is not set +# CONFIG_UHCI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:UHCI Configurations + +# +# ESP-Driver:USB Serial/JTAG Configuration +# +CONFIG_USJ_ENABLE_USB_SERIAL_JTAG=y +# end of ESP-Driver:USB Serial/JTAG Configuration + +# +# Hardware Settings +# + +# +# Chip revision +# +CONFIG_ESP32S3_REV_MIN_0=y +# CONFIG_ESP32S3_REV_MIN_1 is not set +# CONFIG_ESP32S3_REV_MIN_2 is not set +CONFIG_ESP32S3_REV_MIN_FULL=0 +CONFIG_ESP_REV_MIN_FULL=0 + +# +# Maximum Supported ESP32-S3 Revision (Rev v0.99) +# +CONFIG_ESP32S3_REV_MAX_FULL=99 +CONFIG_ESP_REV_MAX_FULL=99 +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=199 + +# +# Maximum Supported ESP32-S3 eFuse Block Revision (eFuse Block Rev v1.99) +# +# end of Chip revision + +# +# MAC Config +# +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU=y +CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y +CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND=y +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=2000 +# CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION is not set +# CONFIG_ESP_SLEEP_DEBUG is not set +CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y +# end of Sleep Config + +# +# RTC Clock Config +# +CONFIG_RTC_CLK_SRC_INT_RC=y +# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_RTC_CLK_CAL_CYCLES=1024 +# end of RTC Clock Config + +# +# Peripheral Control +# +CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# GDMA Configurations +# +CONFIG_GDMA_CTRL_FUNC_IN_IRAM=y +CONFIG_GDMA_ISR_HANDLER_IN_IRAM=y +CONFIG_GDMA_OBJ_DRAM_SAFE=y +# CONFIG_GDMA_ENABLE_DEBUG_LOG is not set +# CONFIG_GDMA_ISR_IRAM_SAFE is not set +# end of GDMA Configurations + +# +# Main XTAL Config +# +CONFIG_XTAL_FREQ_40=y +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config + +# +# Power Supplier +# + +# +# Brownout Detector +# +CONFIG_ESP_BROWNOUT_DET=y +CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 is not set +CONFIG_ESP_BROWNOUT_DET_LVL=7 +CONFIG_ESP_BROWNOUT_USE_INTR=y +# end of Brownout Detector +# end of Power Supplier + +CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +CONFIG_ESP_INTR_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-MM: Memory Management Configurations +# +# CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS is not set +# end of ESP-MM: Memory Management Configurations + +# +# Partition API Configuration +# +# end of Partition API Configuration + +# +# Power Management +# +CONFIG_PM_SLEEP_FUNC_IN_IRAM=y +# CONFIG_PM_ENABLE is not set +CONFIG_PM_SLP_IRAM_OPT=y +CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP=y +CONFIG_PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP=y +# end of Power Management + +# +# ESP Ringbuf +# +# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP-ROM +# +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM + +# +# ESP Security Specific +# +# end of ESP Security Specific + +# +# ESP System Settings +# +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160=y +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=160 + +# +# 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_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 +# end of Cache config + +# +# Memory +# +# CONFIG_ESP32S3_RTCDATA_IN_FAST_MEM is not set +# CONFIG_ESP32S3_USE_FIXED_STATIC_RAM_SIZE is not set +# end of Memory + +# +# Trace memory +# +# CONFIG_ESP32S3_TRAX is not set +CONFIG_ESP32S3_TRACEMEM_RESERVE_DRAM=0x0 +# end of Trace memory + +CONFIG_ESP_SYSTEM_IN_IRAM=y +# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set +CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y +# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0 +CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK=y +CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP=y + +# +# Memory protection +# +CONFIG_ESP_SYSTEM_MEMPROT_FEATURE=y +CONFIG_ESP_SYSTEM_MEMPROT_FEATURE_LOCK=y +# end of Memory protection + +CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 +CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y +# CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set +# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set +CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# CONFIG_ESP_CONSOLE_USB_CDC is not set +# CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG is not set +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_NONE is not set +# CONFIG_ESP_CONSOLE_SECONDARY_NONE is not set +CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG=y +CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=y +CONFIG_ESP_CONSOLE_UART=y +CONFIG_ESP_CONSOLE_UART_NUM=0 +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +CONFIG_ESP_INT_WDT=y +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +CONFIG_ESP_INT_WDT_CHECK_CPU1=y +CONFIG_ESP_TASK_WDT_EN=y +CONFIG_ESP_TASK_WDT_INIT=y +# CONFIG_ESP_TASK_WDT_PANIC is not set +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP_DEBUG_OCDAWARE=y +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y +CONFIG_ESP_SYSTEM_BBPLL_RECALIB=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +CONFIG_ESP_IPC_ENABLE=y +CONFIG_ESP_IPC_TASK_STACK_SIZE=1280 +CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y +CONFIG_ESP_IPC_ISR_ENABLE=y +# end of IPC (Inter-Processor Call) + +# +# ESP Timer (High Resolution Timer) +# +CONFIG_ESP_TIMER_IN_IRAM=y +# CONFIG_ESP_TIMER_PROFILING is not set +CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y +CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y +CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 +CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 +# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set +CONFIG_ESP_TIMER_TASK_AFFINITY=0x0 +CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y +CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y +# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set +CONFIG_ESP_TIMER_IMPL_SYSTIMER=y +# end of ESP Timer (High Resolution Timer) + +# +# FreeRTOS +# + +# +# Kernel +# +# CONFIG_FREERTOS_SMP is not set +# CONFIG_FREERTOS_UNICORE is not set +CONFIG_FREERTOS_HZ=100 +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set +CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y +CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 +CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 +# CONFIG_FREERTOS_USE_IDLE_HOOK is not set +# CONFIG_FREERTOS_USE_TICK_HOOK is not set +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set +CONFIG_FREERTOS_USE_TIMERS=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 is not set +CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y +# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set +# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +# CONFIG_FREERTOS_FPU_IN_ISR is not set +CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER=y +CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1=y +# CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 is not set +CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER=y +# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +# +# Extra +# +# end of Extra + +CONFIG_FREERTOS_PORT=y +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y +CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y +CONFIG_FREERTOS_NUMBER_OF_CORES=2 +CONFIG_FREERTOS_IN_IRAM=y +# end of FreeRTOS + +# +# Hardware Abstraction Layer (HAL) and Low Level (LL) +# +CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y +# CONFIG_HAL_ASSERTION_DISABLE is not set +# CONFIG_HAL_ASSERTION_SILENT is not set +# CONFIG_HAL_ASSERTION_ENABLE is not set +CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 +CONFIG_HAL_WDT_USE_ROM_IMPL=y +# end of Hardware Abstraction Layer (HAL) and Low Level (LL) + +# +# Heap memory debugging +# +CONFIG_HEAP_POISONING_DISABLED=y +# CONFIG_HEAP_POISONING_LIGHT is not set +# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set +CONFIG_HEAP_TRACING_OFF=y +# CONFIG_HEAP_TRACING_STANDALONE is not set +# CONFIG_HEAP_TRACING_TOHOST is not set +# CONFIG_HEAP_USE_HOOKS is not set +# CONFIG_HEAP_TASK_TRACKING is not set +# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set +# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set +# end of Heap memory debugging + +# +# Log +# +CONFIG_LOG_VERSION_1=y +# CONFIG_LOG_VERSION_2 is not set +CONFIG_LOG_VERSION=1 + +# +# Log Level +# +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# CONFIG_LOG_COLORS is not set +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format + +# +# Settings +# +CONFIG_LOG_MODE_TEXT_EN=y +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +CONFIG_LOG_IN_IRAM=y +# end of Log + +# +# mbedTLS +# +CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y +# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set +# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set +CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 +CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 +# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set +# CONFIG_MBEDTLS_DEBUG is not set + +# +# mbedTLS v3.x related +# +# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set +# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set +# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set +# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set +CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y +# CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT is not set +CONFIG_MBEDTLS_PKCS7_C=y +# end of mbedTLS v3.x related + +# +# Certificate Bundle +# +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set +# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST is not set +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +# CONFIG_MBEDTLS_CMAC_C is not set +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_AES_USE_INTERRUPT=y +CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL=0 +CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +# CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set +CONFIG_MBEDTLS_MPI_USE_INTERRUPT=y +CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL=0 +CONFIG_MBEDTLS_HARDWARE_SHA=y +CONFIG_MBEDTLS_ROM_MD5=y +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +CONFIG_MBEDTLS_HAVE_TIME=y +# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +CONFIG_MBEDTLS_SHA1_C=y +CONFIG_MBEDTLS_SHA512_C=y +# CONFIG_MBEDTLS_SHA3_C is not set +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# CONFIG_MBEDTLS_TLS_DISABLED is not set +CONFIG_MBEDTLS_TLS_SERVER=y +CONFIG_MBEDTLS_TLS_CLIENT=y +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Key Exchange Methods +# +# CONFIG_MBEDTLS_PSK_MODES is not set +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y +# end of TLS Key Exchange Methods + +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set +CONFIG_MBEDTLS_SSL_ALPN=y +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y + +# +# Symmetric Ciphers +# +CONFIG_MBEDTLS_AES_C=y +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# CONFIG_MBEDTLS_DES_C is not set +# CONFIG_MBEDTLS_BLOWFISH_C is not set +# CONFIG_MBEDTLS_XTEA_C is not set +CONFIG_MBEDTLS_CCM_C=y +CONFIG_MBEDTLS_GCM_C=y +# CONFIG_MBEDTLS_NIST_KW_C is not set +# end of Symmetric Ciphers + +# CONFIG_MBEDTLS_RIPEMD160_C is not set + +# +# Certificates +# +CONFIG_MBEDTLS_PEM_PARSE_C=y +CONFIG_MBEDTLS_PEM_WRITE_C=y +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# end of Certificates + +CONFIG_MBEDTLS_ECP_C=y +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# CONFIG_MBEDTLS_DHM_C is not set +CONFIG_MBEDTLS_ECDH_C=y +CONFIG_MBEDTLS_ECDSA_C=y +# CONFIG_MBEDTLS_ECJPAKE_C is not set +CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# CONFIG_MBEDTLS_POLY1305_C is not set +# CONFIG_MBEDTLS_CHACHA20_C is not set +# CONFIG_MBEDTLS_HKDF_C is not set +# CONFIG_MBEDTLS_THREADING_C is not set +CONFIG_MBEDTLS_ERROR_STRINGS=y +# CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION is not set +# end of mbedTLS + +# +# LibC +# +CONFIG_LIBC_NEWLIB=y +CONFIG_LIBC_MISC_IN_IRAM=y +CONFIG_LIBC_LOCKS_PLACE_IN_IRAM=y +# CONFIG_LIBC_NEWLIB_NANO_FORMAT is not set +CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT=y +# CONFIG_LIBC_TIME_SYSCALL_USE_RTC is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_HRT is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_NONE is not set +# end of LibC + +# +# PThreads +# +CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_PTHREAD_STACK_MIN=768 +CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y +# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set +# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set +CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" +# end of PThreads + +# +# MMU Config +# +CONFIG_MMU_PAGE_SIZE_64KB=y +CONFIG_MMU_PAGE_MODE="64KB" +CONFIG_MMU_PAGE_SIZE=0x10000 +# end of MMU Config + +# +# Main Flash configuration +# + +# +# SPI Flash behavior when brownout +# +CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y +CONFIG_SPI_FLASH_BROWNOUT_RESET=y +# end of SPI Flash behavior when brownout + +# +# Optional and Experimental Features (READ DOCS FIRST) +# + +# +# Features here require specific hardware (READ DOCS FIRST!) +# +# CONFIG_SPI_FLASH_HPM_ENA is not set +CONFIG_SPI_FLASH_HPM_AUTO=y +# CONFIG_SPI_FLASH_HPM_DIS is not set +CONFIG_SPI_FLASH_HPM_ON=y +CONFIG_SPI_FLASH_HPM_DC_AUTO=y +# CONFIG_SPI_FLASH_HPM_DC_DISABLE is not set +# CONFIG_SPI_FLASH_AUTO_SUSPEND is not set +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM=y +# end of Optional and Experimental Features (READ DOCS FIRST) +# end of Main Flash configuration + +# +# SPI Flash driver +# +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y +# CONFIG_SPI_FLASH_ROM_IMPL is not set +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 +CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 +# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set +# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set +# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set + +# +# Auto-detect flash chips +# +CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED=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 +# end of Auto-detect flash chips + +CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y +# end of SPI Flash driver +# end of Component config + +# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set + +# Deprecated options for backward compatibility +# CONFIG_APP_BUILD_TYPE_ELF_RAM is not set +# CONFIG_NO_BLOBS is not set +# CONFIG_APP_ROLLBACK_ENABLE is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set +CONFIG_LOG_BOOTLOADER_LEVEL_INFO=y +# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set +CONFIG_LOG_BOOTLOADER_LEVEL=3 +# CONFIG_FLASH_ENCRYPTION_ENABLED is not set +# CONFIG_FLASHMODE_QIO is not set +# CONFIG_FLASHMODE_QOUT is not set +CONFIG_FLASHMODE_DIO=y +# CONFIG_FLASHMODE_DOUT is not set +CONFIG_MONITOR_BAUD=115200 +CONFIG_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_DEFAULT=y +# CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set +# CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set +CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y +# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set +CONFIG_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_CXX_EXCEPTIONS is not set +CONFIG_STACK_CHECK_NONE=y +# CONFIG_STACK_CHECK_NORM is not set +# CONFIG_STACK_CHECK_STRONG is not set +# CONFIG_STACK_CHECK_ALL is not set +# CONFIG_WARN_WRITE_STRINGS is not set +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_ESP_SYSTEM_PD_FLASH is not set +CONFIG_ESP32S3_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP32S3_RTC_CLK_SRC_INT_RC=y +# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_ESP32S3_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_ESP32S3_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_ESP32S3_RTC_CLK_CAL_CYCLES=1024 +CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_BROWNOUT_DET=y +CONFIG_ESP32S3_BROWNOUT_DET=y +CONFIG_BROWNOUT_DET_LVL_SEL_7=y +CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_ESP32S3_BROWNOUT_DET_LVL_SEL_1 is not set +CONFIG_BROWNOUT_DET_LVL=7 +CONFIG_ESP32S3_BROWNOUT_DET_LVL=7 +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU=y +CONFIG_PM_POWER_DOWN_TAGMEM_IN_LIGHT_SLEEP=y +# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_80 is not set +CONFIG_ESP32S3_DEFAULT_CPU_FREQ_160=y +# CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240 is not set +CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ=160 +CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_MAIN_TASK_STACK_SIZE=3584 +CONFIG_CONSOLE_UART_DEFAULT=y +# CONFIG_CONSOLE_UART_CUSTOM is not set +# CONFIG_CONSOLE_UART_NONE is not set +# CONFIG_ESP_CONSOLE_UART_NONE is not set +CONFIG_CONSOLE_UART=y +CONFIG_CONSOLE_UART_NUM=0 +CONFIG_CONSOLE_UART_BAUDRATE=115200 +CONFIG_INT_WDT=y +CONFIG_INT_WDT_TIMEOUT_MS=300 +CONFIG_INT_WDT_CHECK_CPU1=y +CONFIG_TASK_WDT=y +CONFIG_ESP_TASK_WDT=y +# CONFIG_TASK_WDT_PANIC is not set +CONFIG_TASK_WDT_TIMEOUT_S=5 +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP32S3_DEBUG_OCDAWARE=y +CONFIG_IPC_TASK_STACK_SIZE=1280 +CONFIG_TIMER_TASK_STACK_SIZE=3584 +CONFIG_TIMER_TASK_PRIORITY=1 +CONFIG_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_TIMER_QUEUE_LENGTH=10 +# CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set +# CONFIG_HAL_ASSERTION_SILIENT is not set +# CONFIG_NEWLIB_NANO_FORMAT is not set +CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_SYSTIMER=y +CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_SYSTIMER is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_FRC1 is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# CONFIG_ESP32S3_TIME_SYSCALL_USE_NONE is not set +CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_ESP32_PTHREAD_STACK_MIN=768 +CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y +# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set +# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set +CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT="pthread" +CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set +# End of deprecated options diff --git a/sdkconfig.ci.dma b/sdkconfig.ci.dma new file mode 100644 index 0000000..b09beeb --- /dev/null +++ b/sdkconfig.ci.dma @@ -0,0 +1,2 @@ +CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA=y +CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_TIMER=n diff --git a/sdkconfig.ci.timer b/sdkconfig.ci.timer new file mode 100644 index 0000000..9b044fd --- /dev/null +++ b/sdkconfig.ci.timer @@ -0,0 +1,2 @@ +CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA=n +CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_TIMER=y diff --git a/sdkconfig.defaults b/sdkconfig.defaults new file mode 100644 index 0000000..0a79089 --- /dev/null +++ b/sdkconfig.defaults @@ -0,0 +1 @@ +CONFIG_ADC_DISABLE_DAC_OUTPUT=n diff --git a/sdkconfig.old b/sdkconfig.old new file mode 100644 index 0000000..8dc05a0 --- /dev/null +++ b/sdkconfig.old @@ -0,0 +1,1507 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.5.1 Project Configuration +# +CONFIG_SOC_CAPS_ECO_VER_MAX=301 +CONFIG_SOC_ADC_SUPPORTED=y +CONFIG_SOC_DAC_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_SDIO_SLAVE_SUPPORTED=y +CONFIG_SOC_TWAI_SUPPORTED=y +CONFIG_SOC_EFUSE_SUPPORTED=y +CONFIG_SOC_EMAC_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_I2S_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_DPORT_WORKAROUND_DIS_INTERRUPT_LVL=5 +CONFIG_SOC_XTAL_SUPPORT_26M=y +CONFIG_SOC_XTAL_SUPPORT_40M=y +CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT=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=16 +CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=9 +CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_DIGI_RESULT_BYTES=2 +CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 +CONFIG_SOC_ADC_DIGI_MONITOR_NUM=0 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=2 +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=20 +CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=9 +CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_SHARED_POWER=y +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +CONFIG_SOC_SHARED_IDCACHE_SUPPORTED=y +CONFIG_SOC_IDCACHE_PER_CORE=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_DAC_CHAN_NUM=2 +CONFIG_SOC_DAC_RESOLUTION=8 +CONFIG_SOC_DAC_DMA_16BIT_ALIGN=y +CONFIG_SOC_GPIO_PORT=1 +CONFIG_SOC_GPIO_PIN_COUNT=40 +CONFIG_SOC_GPIO_VALID_GPIO_MASK=0xFFFFFFFFFF +CONFIG_SOC_GPIO_IN_RANGE_MAX=39 +CONFIG_SOC_GPIO_OUT_RANGE_MAX=33 +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0xEF0FEA +CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX=y +CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM=3 +CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP=y +CONFIG_SOC_I2C_NUM=2 +CONFIG_SOC_HP_I2C_NUM=2 +CONFIG_SOC_I2C_FIFO_LEN=32 +CONFIG_SOC_I2C_CMD_REG_NUM=16 +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +CONFIG_SOC_I2C_SUPPORT_APB=y +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +CONFIG_SOC_I2C_STOP_INDEPENDENT=y +CONFIG_SOC_I2S_NUM=2 +CONFIG_SOC_I2S_HW_VERSION_1=y +CONFIG_SOC_I2S_SUPPORTS_APLL=y +CONFIG_SOC_I2S_SUPPORTS_PLL_F160M=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=1 +CONFIG_SOC_I2S_PDM_MAX_RX_LINES=1 +CONFIG_SOC_I2S_SUPPORTS_ADC_DAC=y +CONFIG_SOC_I2S_SUPPORTS_ADC=y +CONFIG_SOC_I2S_SUPPORTS_DAC=y +CONFIG_SOC_I2S_SUPPORTS_LCD_CAMERA=y +CONFIG_SOC_I2S_MAX_DATA_WIDTH=24 +CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD=y +CONFIG_SOC_I2S_LCD_I80_VARIANT=y +CONFIG_SOC_LCD_I80_SUPPORTED=y +CONFIG_SOC_LCD_I80_BUSES=2 +CONFIG_SOC_LCD_I80_BUS_WIDTH=24 +CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX=y +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +CONFIG_SOC_LEDC_SUPPORT_REF_TICK=y +CONFIG_SOC_LEDC_SUPPORT_HS_MODE=y +CONFIG_SOC_LEDC_TIMER_NUM=4 +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=20 +CONFIG_SOC_MCPWM_GROUPS=2 +CONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3 +CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3 +CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2 +CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3 +CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y +CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3 +CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3 +CONFIG_SOC_MMU_PERIPH_NUM=2 +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=3 +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +CONFIG_SOC_PCNT_GROUPS=1 +CONFIG_SOC_PCNT_UNITS_PER_GROUP=8 +CONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2 +CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2 +CONFIG_SOC_RMT_GROUPS=1 +CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=8 +CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=8 +CONFIG_SOC_RMT_CHANNELS_PER_GROUP=8 +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=64 +CONFIG_SOC_RMT_SUPPORT_REF_TICK=y +CONFIG_SOC_RMT_SUPPORT_APB=y +CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT=y +CONFIG_SOC_RTCIO_PIN_COUNT=18 +CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y +CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y +CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +CONFIG_SOC_SDM_GROUPS=1 +CONFIG_SOC_SDM_CHANNELS_PER_GROUP=8 +CONFIG_SOC_SDM_CLK_SUPPORT_APB=y +CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED=y +CONFIG_SOC_SPI_AS_CS_SUPPORTED=y +CONFIG_SOC_SPI_PERIPH_NUM=3 +CONFIG_SOC_SPI_DMA_CHAN_NUM=2 +CONFIG_SOC_SPI_MAX_CS_NUM=3 +CONFIG_SOC_SPI_SUPPORT_CLK_APB=y +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +CONFIG_SOC_SPI_MAX_PRE_DIVIDER=8192 +CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +CONFIG_SOC_TIMER_GROUPS=2 +CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=2 +CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=64 +CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=4 +CONFIG_SOC_TIMER_GROUP_SUPPORT_APB=y +CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO=32 +CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI=16 +CONFIG_SOC_TOUCH_SENSOR_VERSION=1 +CONFIG_SOC_TOUCH_SENSOR_NUM=10 +CONFIG_SOC_TOUCH_MIN_CHAN_ID=0 +CONFIG_SOC_TOUCH_MAX_CHAN_ID=9 +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_TWAI_BRP_MIN=2 +CONFIG_SOC_TWAI_CLK_SUPPORT_APB=y +CONFIG_SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT=y +CONFIG_SOC_UART_NUM=3 +CONFIG_SOC_UART_HP_NUM=3 +CONFIG_SOC_UART_SUPPORT_APB_CLK=y +CONFIG_SOC_UART_SUPPORT_REF_TICK=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_PARALLEL_ENG=y +CONFIG_SOC_SHA_ENDIANNESS_BE=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=1 +CONFIG_SOC_RSA_MAX_BIT_LEN=4096 +CONFIG_SOC_AES_SUPPORT_AES_128=y +CONFIG_SOC_AES_SUPPORT_AES_192=y +CONFIG_SOC_AES_SUPPORT_AES_256=y +CONFIG_SOC_SECURE_BOOT_V1=y +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=1 +CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=32 +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_RTC_FAST_MEM_PD=y +CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_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_APLL_SUPPORTED=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_CLK_LP_FAST_SUPPORT_XTAL_D4=y +CONFIG_SOC_SDMMC_USE_IOMUX=y +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +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_WIFI_NAN_SUPPORT=y +CONFIG_SOC_BLE_SUPPORTED=y +CONFIG_SOC_BLE_MESH_SUPPORTED=y +CONFIG_SOC_BT_CLASSIC_SUPPORTED=y +CONFIG_SOC_BLUFI_SUPPORTED=y +CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED=y +CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION=y +CONFIG_SOC_ULP_HAS_ADC=y +CONFIG_SOC_PHY_COMBO_MODULE=y +CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK=y +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TOOLCHAIN_GCC=y +CONFIG_IDF_TARGET_ARCH_XTENSA=y +CONFIG_IDF_TARGET_ARCH="xtensa" +CONFIG_IDF_TARGET="esp32" +CONFIG_IDF_INIT_VERSION="5.5.1" +CONFIG_IDF_TARGET_ESP32=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0000 + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# CONFIG_APP_BUILD_TYPE_RAM is not set +CONFIG_APP_BUILD_GENERATE_BINARIES=y +CONFIG_APP_BUILD_BOOTLOADER=y +CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# CONFIG_APP_REPRODUCIBLE_BUILD is not set +# CONFIG_APP_NO_BLOBS is not set +# CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set +# CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS is not set +# end of Build type + +# +# Bootloader config +# + +# +# Bootloader manager +# +CONFIG_BOOTLOADER_COMPILE_TIME_DATE=y +CONFIG_BOOTLOADER_PROJECT_VER=1 +# end of Bootloader manager + +# +# Application Rollback +# +# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set +# end of Application Rollback + +# +# Recovery Bootloader and Rollback +# +# end of Recovery Bootloader and Rollback + +CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x1000 +CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set + +# +# Log +# +CONFIG_BOOTLOADER_LOG_VERSION_1=y +CONFIG_BOOTLOADER_LOG_VERSION=1 +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +CONFIG_BOOTLOADER_LOG_LEVEL=3 + +# +# Format +# +# CONFIG_BOOTLOADER_LOG_COLORS is not set +CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y +# end of Format + +# +# Settings +# +CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN=y +CONFIG_BOOTLOADER_LOG_MODE_TEXT=y +# end of Settings +# end of Log + +# +# Serial Flash Configurations +# +# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# end of Serial Flash Configurations + +# CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V is not set +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# CONFIG_BOOTLOADER_FACTORY_RESET is not set +# CONFIG_BOOTLOADER_APP_TEST is not set +CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y +CONFIG_BOOTLOADER_WDT_ENABLE=y +# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set +CONFIG_BOOTLOADER_WDT_TIME_MS=9000 +# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set +CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 +# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set +# end of Bootloader config + +# +# Security features +# +CONFIG_SECURE_BOOT_V1_SUPPORTED=y +# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set +# CONFIG_SECURE_BOOT is not set +# CONFIG_SECURE_FLASH_ENC_ENABLED is not set +# end of Security features + +# +# Application manager +# +CONFIG_APP_COMPILE_TIME_DATE=y +# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set +# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set +# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set +CONFIG_APP_RETRIEVE_LEN_ELF_SHA=9 +# end of Application manager + +CONFIG_ESP_ROM_HAS_CRC_LE=y +CONFIG_ESP_ROM_HAS_CRC_BE=y +CONFIG_ESP_ROM_HAS_MZ_CRC32=y +CONFIG_ESP_ROM_HAS_JPEG_DECODE=y +CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH=y +CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y +CONFIG_ESP_ROM_HAS_NEWLIB=y +CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y +CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME=y +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +CONFIG_ESP_ROM_USB_OTG_NUM=-1 +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=-1 +CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB=y +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y + +# +# Serial flasher config +# +# CONFIG_ESPTOOLPY_NO_STUB is not set +# 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_80M is not set +CONFIG_ESPTOOLPY_FLASHFREQ_40M=y +# CONFIG_ESPTOOLPY_FLASHFREQ_26M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +CONFIG_ESPTOOLPY_FLASHFREQ="40m" +# 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_ESPTOOLPY_MONITOR_BAUD=115200 +# end of Serial flasher config + +# +# Partition Table +# +CONFIG_PARTITION_TABLE_SINGLE_APP=y +# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# CONFIG_PARTITION_TABLE_TWO_OTA_LARGE is not set +# CONFIG_PARTITION_TABLE_CUSTOM is not set +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# 示例配置 +# +CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_DMA=y +# CONFIG_EXAMPLE_DAC_CONTINUOUS_BY_TIMER is not set +CONFIG_EXAMPLE_WAVE_PERIOD_SEC=2 +# end of 示例配置 + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE=y +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# CONFIG_COMPILER_CXX_RTTI is not set +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS=y +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_GCCLIB=y +CONFIG_COMPILER_RT_LIB_NAME="gcc" +CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING=y +# CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE is not set +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# end of Compiler options + +# +# Component config +# + +# +# !!! MINIMAL_BUILD is enabled !!! +# + +# +# Only common components and those transitively required by the main component are listed +# + +# +# If a component configuration is missing, please add it to the main component's requirements +# + +# +# Driver Configurations +# + +# +# Legacy TWAI Driver Configurations +# +# CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK is not set +CONFIG_TWAI_ERRATA_FIX_BUS_OFF_REC=y +CONFIG_TWAI_ERRATA_FIX_TX_INTR_LOST=y +CONFIG_TWAI_ERRATA_FIX_RX_FRAME_INVALID=y +CONFIG_TWAI_ERRATA_FIX_RX_FIFO_CORRUPT=y +CONFIG_TWAI_ERRATA_FIX_LISTEN_ONLY_DOM=y +# end of Legacy TWAI Driver Configurations + +# +# Legacy ADC Driver Configuration +# +CONFIG_ADC_DISABLE_DAC=y +# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK is not set + +# +# Legacy ADC Calibration Configuration +# +CONFIG_ADC_CAL_EFUSE_TP_ENABLE=y +CONFIG_ADC_CAL_EFUSE_VREF_ENABLE=y +CONFIG_ADC_CAL_LUT_ENABLE=y +# CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN is not set +# end of Legacy ADC Calibration Configuration +# end of Legacy ADC Driver Configuration + +# +# Legacy DAC Driver Configurations +# +# CONFIG_DAC_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_DAC_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy DAC Driver Configurations + +# +# Legacy MCPWM Driver Configurations +# +# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy MCPWM Driver Configurations + +# +# Legacy Timer Group Driver Configurations +# +# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Timer Group Driver Configurations + +# +# Legacy RMT Driver Configurations +# +# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy RMT Driver Configurations + +# +# Legacy I2S Driver Configurations +# +# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2S Driver Configurations + +# +# Legacy I2C Driver Configurations +# +# CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2C Driver Configurations + +# +# Legacy PCNT Driver Configurations +# +# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy PCNT Driver Configurations + +# +# Legacy SDM Driver Configurations +# +# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy SDM Driver Configurations + +# +# Legacy Touch Sensor Driver Configurations +# +# CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Touch Sensor Driver Configurations +# end of Driver Configurations + +# +# eFuse Bit Manager +# +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# CONFIG_EFUSE_VIRTUAL is not set +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE is not set +CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4=y +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT is not set +CONFIG_EFUSE_MAX_BLK_LEN=192 +# end of eFuse Bit Manager + +# +# ADC and ADC Calibration +# +# CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE is not set + +# +# ADC Calibration Configurations +# +CONFIG_ADC_CALI_EFUSE_TP_ENABLE=y +CONFIG_ADC_CALI_EFUSE_VREF_ENABLE=y +CONFIG_ADC_CALI_LUT_ENABLE=y +# end of ADC Calibration Configurations + +# CONFIG_ADC_DISABLE_DAC_OUTPUT is not set +# CONFIG_ADC_ENABLE_DEBUG_LOG is not set +# end of ADC and ADC Calibration + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# ESP-Driver:DAC Configurations +# +# CONFIG_DAC_CTRL_FUNC_IN_IRAM is not set +# CONFIG_DAC_ISR_IRAM_SAFE is not set +# CONFIG_DAC_ENABLE_DEBUG_LOG is not set +CONFIG_DAC_DMA_AUTO_16BIT_ALIGN=y +# end of ESP-Driver:DAC Configurations + +# +# ESP-Driver:GPIO Configurations +# +# CONFIG_GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL is not set +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:GPIO Configurations + +# +# ESP-Driver:GPTimer Configurations +# +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# CONFIG_GPTIMER_ISR_CACHE_SAFE is not set +CONFIG_GPTIMER_OBJ_CACHE_SAFE=y +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:GPTimer Configurations + +# +# ESP-Driver:I2C Configurations +# +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 is not set +CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM=y +# end of ESP-Driver:I2C Configurations + +# +# ESP-Driver:I2S Configurations +# +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:I2S Configurations + +# +# ESP-Driver:LEDC Configurations +# +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:LEDC Configurations + +# +# ESP-Driver:MCPWM Configurations +# +CONFIG_MCPWM_ISR_HANDLER_IN_IRAM=y +# CONFIG_MCPWM_ISR_CACHE_SAFE is not set +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +CONFIG_MCPWM_OBJ_CACHE_SAFE=y +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:MCPWM Configurations + +# +# ESP-Driver:PCNT Configurations +# +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:PCNT Configurations + +# +# ESP-Driver:RMT Configurations +# +CONFIG_RMT_ENCODER_FUNC_IN_IRAM=y +CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM=y +CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM=y +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_TX_ISR_CACHE_SAFE is not set +# CONFIG_RMT_RX_ISR_CACHE_SAFE is not set +CONFIG_RMT_OBJ_CACHE_SAFE=y +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# end of ESP-Driver:RMT Configurations + +# +# ESP-Driver:Sigma Delta Modulator Configurations +# +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Sigma Delta Modulator Configurations + +# +# ESP-Driver:SPI Configurations +# +# CONFIG_SPI_MASTER_IN_IRAM is not set +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# CONFIG_SPI_SLAVE_IN_IRAM is not set +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of ESP-Driver:SPI Configurations + +# +# ESP-Driver:TWAI Configurations +# +# CONFIG_TWAI_ISR_IN_IRAM is not set +# CONFIG_TWAI_ISR_CACHE_SAFE is not set +# CONFIG_TWAI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:TWAI Configurations + +# +# ESP-Driver:UART Configurations +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of ESP-Driver:UART Configurations + +# +# ESP-Driver:UHCI Configurations +# +# CONFIG_UHCI_ISR_HANDLER_IN_IRAM is not set +# CONFIG_UHCI_ISR_CACHE_SAFE is not set +# CONFIG_UHCI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:UHCI Configurations + +# +# Hardware Settings +# + +# +# Chip revision +# +CONFIG_ESP32_REV_MIN_0=y +# CONFIG_ESP32_REV_MIN_1 is not set +# CONFIG_ESP32_REV_MIN_1_1 is not set +# CONFIG_ESP32_REV_MIN_2 is not set +# CONFIG_ESP32_REV_MIN_3 is not set +# CONFIG_ESP32_REV_MIN_3_1 is not set +CONFIG_ESP32_REV_MIN=0 +CONFIG_ESP32_REV_MIN_FULL=0 +CONFIG_ESP_REV_MIN_FULL=0 + +# +# Maximum Supported ESP32 Revision (Rev v3.99) +# +CONFIG_ESP32_REV_MAX_FULL=399 +CONFIG_ESP_REV_MAX_FULL=399 +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=99 + +# +# Maximum Supported ESP32 eFuse Block Revision (eFuse Block Rev v0.99) +# +# end of Chip revision + +# +# MAC Config +# +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR is not set +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +# CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU is not set +CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y +# CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND is not set +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=2000 +# CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION is not set +# CONFIG_ESP_SLEEP_DEBUG is not set +CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y +# end of Sleep Config + +# +# RTC Clock Config +# +CONFIG_RTC_CLK_SRC_INT_RC=y +# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_RTC_CLK_CAL_CYCLES=1024 +# end of RTC Clock Config + +# +# Peripheral Control +# +CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# Main XTAL Config +# +# CONFIG_XTAL_FREQ_26 is not set +# CONFIG_XTAL_FREQ_32 is not set +CONFIG_XTAL_FREQ_40=y +# CONFIG_XTAL_FREQ_AUTO is not set +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config + +# +# Power Supplier +# + +# +# Brownout Detector +# +CONFIG_ESP_BROWNOUT_DET=y +CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0=y +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 is not set +CONFIG_ESP_BROWNOUT_DET_LVL=0 +CONFIG_ESP_BROWNOUT_USE_INTR=y +# end of Brownout Detector +# end of Power Supplier + +CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +CONFIG_ESP_INTR_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-MM: Memory Management Configurations +# +# end of ESP-MM: Memory Management Configurations + +# +# Partition API Configuration +# +# end of Partition API Configuration + +# +# Power Management +# +CONFIG_PM_SLEEP_FUNC_IN_IRAM=y +# CONFIG_PM_ENABLE is not set +CONFIG_PM_SLP_IRAM_OPT=y +# end of Power Management + +# +# ESP Ringbuf +# +# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP-ROM +# +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM + +# +# ESP Security Specific +# +# end of ESP Security Specific + +# +# ESP System Settings +# +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160=y +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 is not set +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=160 + +# +# Memory +# +# CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE is not set + +# +# Non-backward compatible options +# +# CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM is not set +# end of Non-backward compatible options +# end of Memory + +# +# Trace memory +# +# CONFIG_ESP32_TRAX is not set +CONFIG_ESP32_TRACEMEM_RESERVE_DRAM=0x0 +# end of Trace memory + +CONFIG_ESP_SYSTEM_IN_IRAM=y +# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set +CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y +# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0 + +# +# Memory protection +# +# end of Memory protection + +CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 +CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y +# CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set +# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set +CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_NONE is not set +CONFIG_ESP_CONSOLE_UART=y +CONFIG_ESP_CONSOLE_UART_NUM=0 +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +CONFIG_ESP_INT_WDT=y +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +CONFIG_ESP_INT_WDT_CHECK_CPU1=y +CONFIG_ESP_TASK_WDT_EN=y +CONFIG_ESP_TASK_WDT_INIT=y +# CONFIG_ESP_TASK_WDT_PANIC is not set +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP_DEBUG_OCDAWARE=y +# CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 is not set +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y +# CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE is not set +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +CONFIG_ESP_IPC_ENABLE=y +CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 +CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y +CONFIG_ESP_IPC_ISR_ENABLE=y +# end of IPC (Inter-Processor Call) + +# +# ESP Timer (High Resolution Timer) +# +CONFIG_ESP_TIMER_IN_IRAM=y +# CONFIG_ESP_TIMER_PROFILING is not set +CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y +CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y +CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 +CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 +# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set +CONFIG_ESP_TIMER_TASK_AFFINITY=0x0 +CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y +CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y +# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set +CONFIG_ESP_TIMER_IMPL_TG0_LAC=y +# end of ESP Timer (High Resolution Timer) + +# +# FreeRTOS +# + +# +# Kernel +# +# CONFIG_FREERTOS_SMP is not set +# CONFIG_FREERTOS_UNICORE is not set +CONFIG_FREERTOS_HZ=100 +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set +CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y +CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 +CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 +# CONFIG_FREERTOS_USE_IDLE_HOOK is not set +# CONFIG_FREERTOS_USE_TICK_HOOK is not set +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set +CONFIG_FREERTOS_USE_TIMERS=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 is not set +CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y +CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y +# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set +# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +# CONFIG_FREERTOS_FPU_IN_ISR is not set +CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER=y +CONFIG_FREERTOS_CORETIMER_0=y +# CONFIG_FREERTOS_CORETIMER_1 is not set +CONFIG_FREERTOS_SYSTICK_USES_CCOUNT=y +# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +# +# Extra +# +# end of Extra + +CONFIG_FREERTOS_PORT=y +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y +CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y +CONFIG_FREERTOS_NUMBER_OF_CORES=2 +CONFIG_FREERTOS_IN_IRAM=y +# end of FreeRTOS + +# +# Hardware Abstraction Layer (HAL) and Low Level (LL) +# +CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y +# CONFIG_HAL_ASSERTION_DISABLE is not set +# CONFIG_HAL_ASSERTION_SILENT is not set +# CONFIG_HAL_ASSERTION_ENABLE is not set +CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 +# end of Hardware Abstraction Layer (HAL) and Low Level (LL) + +# +# Heap memory debugging +# +CONFIG_HEAP_POISONING_DISABLED=y +# CONFIG_HEAP_POISONING_LIGHT is not set +# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set +CONFIG_HEAP_TRACING_OFF=y +# CONFIG_HEAP_TRACING_STANDALONE is not set +# CONFIG_HEAP_TRACING_TOHOST is not set +# CONFIG_HEAP_USE_HOOKS is not set +# CONFIG_HEAP_TASK_TRACKING is not set +# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set +# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set +# end of Heap memory debugging + +# +# Log +# +CONFIG_LOG_VERSION_1=y +# CONFIG_LOG_VERSION_2 is not set +CONFIG_LOG_VERSION=1 + +# +# Log Level +# +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# CONFIG_LOG_COLORS is not set +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format + +# +# Settings +# +CONFIG_LOG_MODE_TEXT_EN=y +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +CONFIG_LOG_IN_IRAM=y +# end of Log + +# +# mbedTLS +# +CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y +# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set +# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set +CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 +CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 +# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set +# CONFIG_MBEDTLS_DEBUG is not set + +# +# mbedTLS v3.x related +# +# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set +# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set +# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set +# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set +CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y +# CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT is not set +CONFIG_MBEDTLS_PKCS7_C=y +# end of mbedTLS v3.x related + +# +# Certificate Bundle +# +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set +# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST is not set +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +# CONFIG_MBEDTLS_CMAC_C is not set +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +# CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set +CONFIG_MBEDTLS_HARDWARE_SHA=y +CONFIG_MBEDTLS_ROM_MD5=y +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +CONFIG_MBEDTLS_HAVE_TIME=y +# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +CONFIG_MBEDTLS_SHA1_C=y +CONFIG_MBEDTLS_SHA512_C=y +# CONFIG_MBEDTLS_SHA3_C is not set +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# CONFIG_MBEDTLS_TLS_DISABLED is not set +CONFIG_MBEDTLS_TLS_SERVER=y +CONFIG_MBEDTLS_TLS_CLIENT=y +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Key Exchange Methods +# +# CONFIG_MBEDTLS_PSK_MODES is not set +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y +# end of TLS Key Exchange Methods + +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set +CONFIG_MBEDTLS_SSL_ALPN=y +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y + +# +# Symmetric Ciphers +# +CONFIG_MBEDTLS_AES_C=y +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# CONFIG_MBEDTLS_DES_C is not set +# CONFIG_MBEDTLS_BLOWFISH_C is not set +# CONFIG_MBEDTLS_XTEA_C is not set +CONFIG_MBEDTLS_CCM_C=y +CONFIG_MBEDTLS_GCM_C=y +# CONFIG_MBEDTLS_NIST_KW_C is not set +# end of Symmetric Ciphers + +# CONFIG_MBEDTLS_RIPEMD160_C is not set + +# +# Certificates +# +CONFIG_MBEDTLS_PEM_PARSE_C=y +CONFIG_MBEDTLS_PEM_WRITE_C=y +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# end of Certificates + +CONFIG_MBEDTLS_ECP_C=y +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# CONFIG_MBEDTLS_DHM_C is not set +CONFIG_MBEDTLS_ECDH_C=y +CONFIG_MBEDTLS_ECDSA_C=y +# CONFIG_MBEDTLS_ECJPAKE_C is not set +CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# CONFIG_MBEDTLS_POLY1305_C is not set +# CONFIG_MBEDTLS_CHACHA20_C is not set +# CONFIG_MBEDTLS_HKDF_C is not set +# CONFIG_MBEDTLS_THREADING_C is not set +CONFIG_MBEDTLS_ERROR_STRINGS=y +# CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION is not set +# end of mbedTLS + +# +# LibC +# +CONFIG_LIBC_NEWLIB=y +CONFIG_LIBC_MISC_IN_IRAM=y +CONFIG_LIBC_LOCKS_PLACE_IN_IRAM=y +# CONFIG_LIBC_NEWLIB_NANO_FORMAT is not set +CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT=y +# CONFIG_LIBC_TIME_SYSCALL_USE_RTC is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_HRT is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_NONE is not set +# end of LibC + +# +# PThreads +# +CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_PTHREAD_STACK_MIN=768 +CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y +# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set +# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set +CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" +# end of PThreads + +# +# MMU Config +# +CONFIG_MMU_PAGE_SIZE_64KB=y +CONFIG_MMU_PAGE_MODE="64KB" +CONFIG_MMU_PAGE_SIZE=0x10000 +# end of MMU Config + +# +# Main Flash configuration +# + +# +# SPI Flash behavior when brownout +# +CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y +CONFIG_SPI_FLASH_BROWNOUT_RESET=y +# end of SPI Flash behavior when brownout + +# +# Optional and Experimental Features (READ DOCS FIRST) +# + +# +# Features here require specific hardware (READ DOCS FIRST!) +# +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM=y +# end of Optional and Experimental Features (READ DOCS FIRST) +# end of Main Flash configuration + +# +# SPI Flash driver +# +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +# CONFIG_SPI_FLASH_SHARE_SPI1_BUS is not set +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 +CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 +# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set +# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set +# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set + +# +# Auto-detect flash chips +# +CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED=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 is not set +# CONFIG_SPI_FLASH_SUPPORT_TH_CHIP is not set +# end of Auto-detect flash chips + +CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y +# end of SPI Flash driver +# end of Component config + +# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set + +# Deprecated options for backward compatibility +# CONFIG_APP_BUILD_TYPE_ELF_RAM is not set +# CONFIG_NO_BLOBS is not set +# CONFIG_ESP32_NO_BLOBS is not set +# CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set +# CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS is not set +# CONFIG_APP_ROLLBACK_ENABLE is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set +CONFIG_LOG_BOOTLOADER_LEVEL_INFO=y +# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set +CONFIG_LOG_BOOTLOADER_LEVEL=3 +# CONFIG_FLASH_ENCRYPTION_ENABLED is not set +# CONFIG_FLASHMODE_QIO is not set +# CONFIG_FLASHMODE_QOUT is not set +CONFIG_FLASHMODE_DIO=y +# CONFIG_FLASHMODE_DOUT is not set +CONFIG_MONITOR_BAUD=115200 +CONFIG_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_DEFAULT=y +# CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set +# CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set +CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y +# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set +CONFIG_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_CXX_EXCEPTIONS is not set +CONFIG_STACK_CHECK_NONE=y +# CONFIG_STACK_CHECK_NORM is not set +# CONFIG_STACK_CHECK_STRONG is not set +# CONFIG_STACK_CHECK_ALL is not set +# CONFIG_WARN_WRITE_STRINGS is not set +CONFIG_ADC2_DISABLE_DAC=y +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_TWO_UNIVERSAL_MAC_ADDRESS is not set +CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS=y +CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS=4 +# CONFIG_ESP_SYSTEM_PD_FLASH is not set +CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP32_RTC_CLK_SRC_INT_RC=y +CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC=y +# CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL is not set +# CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC is not set +# CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 is not set +# CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 is not set +CONFIG_ESP32_RTC_CLK_CAL_CYCLES=1024 +CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +# CONFIG_ESP32_XTAL_FREQ_26 is not set +CONFIG_ESP32_XTAL_FREQ_40=y +# CONFIG_ESP32_XTAL_FREQ_AUTO is not set +CONFIG_ESP32_XTAL_FREQ=40 +CONFIG_BROWNOUT_DET=y +CONFIG_ESP32_BROWNOUT_DET=y +CONFIG_BROWNOUT_DET_LVL_SEL_0=y +CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0=y +# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_7 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 is not set +CONFIG_BROWNOUT_DET_LVL=0 +CONFIG_ESP32_BROWNOUT_DET_LVL=0 +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +# CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_160=y +# CONFIG_ESP32_DEFAULT_CPU_FREQ_240 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=160 +CONFIG_TRACEMEM_RESERVE_DRAM=0x0 +# CONFIG_ESP32_PANIC_PRINT_HALT is not set +CONFIG_ESP32_PANIC_PRINT_REBOOT=y +# CONFIG_ESP32_PANIC_SILENT_REBOOT is not set +CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_MAIN_TASK_STACK_SIZE=3584 +CONFIG_CONSOLE_UART_DEFAULT=y +# CONFIG_CONSOLE_UART_CUSTOM is not set +# CONFIG_CONSOLE_UART_NONE is not set +# CONFIG_ESP_CONSOLE_UART_NONE is not set +CONFIG_CONSOLE_UART=y +CONFIG_CONSOLE_UART_NUM=0 +CONFIG_CONSOLE_UART_BAUDRATE=115200 +CONFIG_INT_WDT=y +CONFIG_INT_WDT_TIMEOUT_MS=300 +CONFIG_INT_WDT_CHECK_CPU1=y +CONFIG_TASK_WDT=y +CONFIG_ESP_TASK_WDT=y +# CONFIG_TASK_WDT_PANIC is not set +CONFIG_TASK_WDT_TIMEOUT_S=5 +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP32_DEBUG_OCDAWARE=y +# CONFIG_DISABLE_BASIC_ROM_CONSOLE is not set +CONFIG_IPC_TASK_STACK_SIZE=1024 +CONFIG_TIMER_TASK_STACK_SIZE=3584 +CONFIG_TIMER_TASK_PRIORITY=1 +CONFIG_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_TIMER_QUEUE_LENGTH=10 +# CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set +# CONFIG_HAL_ASSERTION_SILIENT is not set +# CONFIG_NEWLIB_NANO_FORMAT is not set +CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_NONE is not set +CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_ESP32_PTHREAD_STACK_MIN=768 +CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y +# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set +# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set +CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT="pthread" +CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set +# End of deprecated options